(OSX) Build fix for gfx/gl.c

This commit is contained in:
meancoot 2013-03-28 20:23:30 -04:00
parent 21fcc5c14b
commit a8eaeece3d

View File

@ -211,6 +211,10 @@ static inline bool load_gl_proc_win32(gl_t *gl)
#define pglUnmapBuffer glUnmapBuffer
#endif
#ifdef __APPLE__
#define GL_RGBA32F GL_RGBA32F_ARB
#endif
////////////////// Shaders
#ifdef HAVE_OPENGLES2