diff options
| author | raysan5 <raysan5@gmail.com> | 2015-01-02 10:18:43 +0100 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2015-01-02 10:18:43 +0100 |
| commit | 061ee04cb524d39d3b4f1bd64b43a65f38ddabef (patch) | |
| tree | 71c1a6a128b6f10fde116d65bbb3216aa5f943e4 /src/rlgl.c | |
| parent | 3c4a91658e8586ecb5504d3167796d043e79d065 (diff) | |
| parent | 2706fa86cdb327c2dc4a67729eb263cb486eb18a (diff) | |
| download | raylib-061ee04cb524d39d3b4f1bd64b43a65f38ddabef.tar.gz raylib-061ee04cb524d39d3b4f1bd64b43a65f38ddabef.zip | |
Integrated ratalaika pull-request
Added first version of OS X compilation support
Some conflicts manually resolved...
Diffstat (limited to 'src/rlgl.c')
| -rw-r--r-- | src/rlgl.c | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -32,14 +32,21 @@ #include <stdlib.h> // Declares malloc() and free() for memory management, rand() #if defined(GRAPHICS_API_OPENGL_11) - #include <GL/gl.h> // Basic OpenGL include - //#include <OpenGL/gl.h> // Basic OpenGL include (OSX) + #ifdef __APPLE__ // OpenGL include for OSX + #include <OpenGL/gl.h> + #else + #include <GL/gl.h> // Basic OpenGL include + #endif #endif #if defined(GRAPHICS_API_OPENGL_33) #define GLEW_STATIC - #include <GL/glew.h> // Extensions loading lib - //#include "glad.h" // TODO: Other extensions loading lib? --> REVIEW + #ifdef __APPLE__ // OpenGL include for OSX + #include <OpenGL/gl3.h> + #else + #include <GL/glew.h> // Extensions loading lib + //#include "glad.h" // TODO: Other extensions loading lib? --> REVIEW + #endif #endif #if defined(GRAPHICS_API_OPENGL_ES2) |
