Navigation Menu

Skip to content

Commit

Permalink
Use the canonical glext.h on MacOS X as well (#define NO_SDL_GLEXT if…
Browse files Browse the repository at this point in the history
… you don't want this)
  • Loading branch information
slouken committed Aug 20, 2004
1 parent f223881 commit 7609c6b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/SDL_opengl.h
Expand Up @@ -34,19 +34,19 @@ static char rcsid =
#endif
#include <windows.h>
#endif
#ifndef NO_SDL_GLEXT
#define __glext_h_ /* Don't let gl.h include glext.h */
#endif
#if defined(__APPLE__) && defined(__MACH__)
#include <OpenGL/gl.h> /* Header File For The OpenGL Library */
#include <OpenGL/glu.h> /* Header File For The GLU Library */
#else
#ifndef NO_SDL_GLEXT
#define __glext_h_ /* Don't let gl.h include glext.h */
#endif
#include <GL/gl.h> /* Header File For The OpenGL Library */
#include <GL/glu.h> /* Header File For The GLU Library */
#endif
#ifndef NO_SDL_GLEXT
#undef __glext_h_
#endif
#endif

/* This file taken from "GLext.h" from the Jeff Molofee OpenGL tutorials.
It is included here because glext.h is not available on some systems.
Expand Down

0 comments on commit 7609c6b

Please sign in to comment.