-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WARNING: rcore
module split per-platform **BIG CHANGE**
#3388
Commits on Sep 19, 2023
-
* Check in current state * Add submodules to Makefile and clean up some imports * Start moving InitGraphicsDeivce * Move android_main and CloseWindow() out of rcore * Move WindowShouldClose out of rcore * Move IsWindowHidden out of rcore * Move IsWindowMinimized out of rcore * Move IsWindowMaximized, IsWindowFocused and IsWindowResized out of rcore * Move ToggleFullscreen out of rcore * Move MaximizeWindow, MinimizeWindow and RestoreWindow out of rcore * Move 13 functions out of rcore: ToggleBorderlessWindowed SetWindowState ClearWindowState SetWindowIcon SetWindowIcons SetWindowTitle SetWindowPosition SetWindowMonitor SetWindowMinSize SetWindowMaxSize SetWindowSize SetWindowOpacity SetWindowFocused * Minor clean up, revert makefile change, include submodules directly in rcore * Fix makefile comment * Remove rcore.h from Makefile * Remove debug include * Move 18 functions from rcore to submodules GetWindowHandle GetMonitorCount GetCurrentMonitor GetMonitorPosition GetMonitorWidth GetMonitorHeight GetMonitorPhysicalHeight GetMonitorRefreshRate GetWindowPosition GetWindowScaleDPI GetMonitorName SetClipboardText GetClipboardText ShowCursor HideCursor EnableCursor DisableCursor GetTime * Move TakeScreenshot, OpenURL, GetGamepadName out of rcore into submodules * remove debugging #defines * Move GetMonitorPhysicalWidth from rcore to submodule * Move GetGamepadAxisCount from rcore * Move SetGamepadMappings out of rcore * Move GetMouseX, GetMouseY, GetMousePosition out of rcore * Move SetMousePosition out of rcore * Move GetMouseWheelMove out of rcore * Move the last functions out of rcore * Move shared function defs and some global var to rcore.h * Clean up rcore.c and rcore.h a little more * Remove unnecessary #define --------- Co-authored-by: MichaelFiber <michael@cubeofb.org>
Configuration menu - View commit details
-
Copy full SHA for f27454c - Browse repository at this point
Copy the full SHA f27454cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 71a1217 - Browse repository at this point
Copy the full SHA 71a1217View commit details
Commits on Sep 20, 2023
-
Revert "REVIEWED:
PLATFORM_DESKTOP
Windows building"This reverts commit 71a1217.
Configuration menu - View commit details
-
Copy full SHA for e3c6979 - Browse repository at this point
Copy the full SHA e3c6979View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ded340 - Browse repository at this point
Copy the full SHA 1ded340View commit details -
[split] Fix compilation for web (and desktop) (#3329)
* Fix compilation for web * Remove EM_ASM_INT from core_input_gestures_web example * Fix raymath undefined symbols for desktop and web * Remove raylib_opengl_interop from examples Makefile * Revert previous commit (8651c78) * Fix TraceLog for web and desktop
ubkp authoredSep 20, 2023 Configuration menu - View commit details
-
Copy full SHA for 7840e75 - Browse repository at this point
Copy the full SHA 7840e75View commit details
Commits on Sep 21, 2023
-
[split]
rcore
,rcore_web
andrcore_desktop
changes (batch 2) (#……3334) * Fix formatting * Reapply commit 9d230d7 (#3305) that was missing * Reapplies commits 719365f (#3309) and 8a1779b (#3312) that were missing * Reapply commit 5c9cc3f (#3323) that was missing * Reapply commit a2b3b1e that was missing * Revert commit cef25c6 to fix macro redefined warning * Move rcore.h #include to after config.h to fix macro redefinitions warnings
ubkp authoredSep 21, 2023 Configuration menu - View commit details
-
Copy full SHA for 0ef3e09 - Browse repository at this point
Copy the full SHA 0ef3e09View commit details
Commits on Sep 22, 2023
-
[split]
rcore
,web
,desktop
,android
changes (batch 3) (#3338)* First pass to remove unneeded platform macros for web * Second pass to remove unneeded platform macros for web * Move GetTouchX, GetTouchY, GetTouchPosition from rcore to web, desktop, android * Move SetMouseCursor from rcore to android, desktop, web
ubkp authoredSep 22, 2023 Configuration menu - View commit details
-
Copy full SHA for d5a780d - Browse repository at this point
Copy the full SHA d5a780dView commit details
Commits on Sep 23, 2023
-
[split]
rcore
,web
,desktop
,android
changes (batch 4) (#3343)* Fix ToggleBorderlessWindowed duplicated glfwSetWindowSize calls * First pass to remove unneeded platform macros for android * Second pass to remove unneeded platform macros for android * Remove unneeded platform macros for desktop * Relocate GetGamepadName and update SetGamepadMappings on android, desktop, web * Add missing comment to web
ubkp authoredSep 23, 2023 Configuration menu - View commit details
-
Copy full SHA for b3c2ff2 - Browse repository at this point
Copy the full SHA b3c2ff2View commit details
Commits on Sep 24, 2023
-
[split]
rcore
,web
,desktop
,android
changes (batch 5) (#3345)* Move SetExitKey from core to android, desktop, web * Move some callbacks from core to desktop and web * Relocate emscripten callbacks on web * Relocate android callbacks on android * Revert "Relocate android callbacks on android" This reverts commit bbdbecc. * Updates UnloadVrStereoConfig on rcore * Update SetClipboardText on android * Fix screenMin/Max default values for android
ubkp authoredSep 24, 2023 Configuration menu - View commit details
-
Copy full SHA for 4093775 - Browse repository at this point
Copy the full SHA 4093775View commit details
Commits on Sep 26, 2023
-
[split]
rcore
,drm
changes (#3347)* Tweak makefiles for PLATFORM_DRM and move rcore_drm's dependencies to rcore.h * Move drm functions to rcore_drm.c * Fix a typo in rcore.c * Add SetExitKey to rcore_drm.c --------- Co-authored-by: MichaelFiber <michael@cubeofb.org>
Configuration menu - View commit details
-
Copy full SHA for ef67e77 - Browse repository at this point
Copy the full SHA ef67e77View commit details
Commits on Oct 1, 2023
-
Fix compilation for android (#3360)
ubkp authoredOct 1, 2023 Configuration menu - View commit details
-
Copy full SHA for e9e38dd - Browse repository at this point
Copy the full SHA e9e38ddView commit details
Commits on Oct 3, 2023
-
ubkp authored
Oct 3, 2023 Configuration menu - View commit details
-
Copy full SHA for 6cb22fc - Browse repository at this point
Copy the full SHA 6cb22fcView commit details
Commits on Oct 8, 2023
-
- Added file headers info - Added TRACELOG message for unimplemented functions - Reviewed code formatting and organization - Several code tweaks
Configuration menu - View commit details
-
Copy full SHA for 3472a16 - Browse repository at this point
Copy the full SHA 3472a16View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1399037 - Browse repository at this point
Copy the full SHA 1399037View commit details -
Configuration menu - View commit details
-
Copy full SHA for b4d2928 - Browse repository at this point
Copy the full SHA b4d2928View commit details