Browse Source

Added desktop platform check...

...to define proper values
Ray 7 years ago
parent
commit
68024f1b0b
1 changed files with 13 additions and 0 deletions
  1. 13 0
      src/rglfw.c

+ 13 - 0
src/rglfw.c

@@ -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"