This website works better with JavaScript.
Home
Explore
Help
Sign In
Archivist
/
raylib-src
mirror of
https://github.com/raysan5/raylib
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
24
Wiki
Activity
Browse Source
Added desktop platform check...
...to define proper values
pull/392/head
Ray
7 years ago
parent
9c65caea8c
commit
68024f1b0b
1 changed files
with
13 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+13
-0
src/rglfw.c
+ 13
- 0
src/rglfw.c
View File
@ -26,6 +26,19 @@
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
#
ifdef _WIN32
#
define _GLFW_WIN32
#
endif
#
ifdef __linux__
#
define _GLFW_X11
#
endif
#
ifdef __APPLE__
#
define _GLFW_COCOA
#
define _GLFW_USE_CHDIR
#
define _GLFW_USE_MENUBAR
#
define _GLFW_USE_RETINA
#
endif
#
include
"external/glfw/src/context.c"
#
include
"external/glfw/src/init.c"
#
include
"external/glfw/src/input.c"
Write
Preview
Loading…
Cancel
Save