X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=blobdiff_plain;f=extra%2Fraylib%2Fraylib.factor;h=fe339568ad54c539bd3a776557eacb343badb612;hp=49f816c18b6b2d6525d274c27ab7abd68a1f57ad;hb=6d4293b5822d769619f66e46e64b704ddfe41b43;hpb=b7bb69b178712e9d135362ebd6efa69c9b8371ba diff --git a/extra/raylib/raylib.factor b/extra/raylib/raylib.factor index 49f816c18b..fe339568ad 100644 --- a/extra/raylib/raylib.factor +++ b/extra/raylib/raylib.factor @@ -754,7 +754,7 @@ FUNCTION-ALIAS: get-clipboard-text c-string GetClipboardText ( ) ! Custom frame control functions ! 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 +! To avoid that behavior and control frame processes manually, enable in config.h: SUPPORT_CUSTOM_FRAME_CONTROL FUNCTION-ALIAS: swap-screen-buffer void SwapScreenBuffer ( ) ! Swap back buffer with front buffer (screen drawing) FUNCTION-ALIAS: poll-input-events void PollInputEvents ( ) ! Register all input events FUNCTION-ALIAS: wait-time void WaitTime ( float ms ) ! Wait for some milliseconds (halt program execution)