summaryrefslogtreecommitdiffhomepage
path: root/src/config.h
diff options
context:
space:
mode:
authorRay <[email protected]>2021-06-17 12:17:50 +0200
committerRay <[email protected]>2021-06-17 12:17:50 +0200
commit19b71f5f13ee6e343836732a80f56d241e6f1659 (patch)
tree658f1073082ffac71b7ea3d8d3b28d0f09353d49 /src/config.h
parentab032919df7fbc2c6f9e61dbd5a1b6765690dde2 (diff)
downloadraylib-19b71f5f13ee6e343836732a80f56d241e6f1659.tar.gz
raylib-19b71f5f13ee6e343836732a80f56d241e6f1659.zip
WARNING: Exposed `SUPPORT_CUSTOM_FRAME_CONTROL` #1729
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h
index c277e5dd..df34f809 100644
--- a/src/config.h
+++ b/src/config.h
@@ -57,6 +57,10 @@
#define SUPPORT_DATA_STORAGE 1
// Support automatic generated events, loading and recording of those events when required
#define SUPPORT_EVENTS_AUTOMATION 1
+// Support custom frame control, only for advance users
+// By default EndDrawing() does this job: draws everything + SwapBuffers() + manage frame timming + PollInputEvents()
+// Enabling this flag allows manual control of the frame processes, use at your own risk
+//#define SUPPORT_CUSTOM_FRAME_CONTROL 1
// core: Configuration values
//------------------------------------------------------------------------------------