diff options
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/raylib.h b/src/raylib.h index 020af527..ea3dc693 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -964,10 +964,9 @@ RLAPI const char *GetClipboardText(void); // Get clipboa // NOTE: Those functions are intended for advance users that want full control over the frame processing // By default EndDrawing() does this job: draws everything + SwapScreenBuffer() + manage frame timming + PollInputEvents() // To avoid that behaviour and control frame processes manually, enable in config.h: SUPPORT_CUSTOM_FRAME_CONTROL -RLAPI void InitTimer(void); // Initialize timer (hi-resolution if available) -RLAPI void WaitTime(float ms); // Wait for some milliseconds (halt program execution) RLAPI void SwapScreenBuffer(void); // Swap back buffer with front buffer (screen drawing) RLAPI void PollInputEvents(void); // Register all input events +RLAPI void WaitTime(float ms); // Wait for some milliseconds (halt program execution) // Cursor-related functions RLAPI void ShowCursor(void); // Shows cursor |
