aboutsummaryrefslogtreecommitdiff
path: root/src/core.c
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2015-05-11 00:15:46 +0200
committerraysan5 <raysan5@gmail.com>2015-05-11 00:15:46 +0200
commita7714c842f72b8d41829caa7564f91abb3ffbd6b (patch)
treefea199fdb2d67d184529d8442b6cbea7b78b92df /src/core.c
parenteae98e1c34512579d69966c99713bd0c45bfcb50 (diff)
downloadraylib-a7714c842f72b8d41829caa7564f91abb3ffbd6b.tar.gz
raylib-a7714c842f72b8d41829caa7564f91abb3ffbd6b.zip
raymath module review and other changes
Complete review of matrix rotation math Check compressed textures support WIP: LoadImageFromData()
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index 384e043a..cc8f31fd 100644
--- a/src/core.c
+++ b/src/core.c
@@ -180,9 +180,9 @@ static int currentMouseWheelY = 0; // Required to track mouse wheel var
static int exitKey = KEY_ESCAPE; // Default exit key (ESC)
static int lastKeyPressed = -1;
-#endif
static bool cursorHidden;
+#endif
static double currentTime, previousTime; // Used to track timmings
static double updateTime, drawTime; // Time measures for update and draw
@@ -227,6 +227,7 @@ static void SwapBuffers(void); // Copy back buffer to f
static void PollInputEvents(void); // Register user events
static void LogoAnimation(void); // Plays raylib logo appearing animation
static void SetupFramebufferSize(int displayWidth, int displayHeight);
+
#if defined(PLATFORM_RPI)
static void InitMouse(void); // Mouse initialization (including mouse thread)
static void *MouseThread(void *arg); // Mouse reading thread