comparison src/video/maccommon/SDL_macgl_c.h @ 1432:0801c9fdbdd6

*** empty log message ***
author Sam Lantinga <slouken@libsdl.org>
date Sat, 25 Feb 2006 20:48:26 +0000
parents 7a610f25c12f
children 14717b52abc0
comparison
equal deleted inserted replaced
1431:8a1c27aacfe3 1432:0801c9fdbdd6
23 /* AGL implementation of SDL OpenGL support */ 23 /* AGL implementation of SDL OpenGL support */
24 24
25 #include "SDL_config.h" 25 #include "SDL_config.h"
26 26
27 #if SDL_VIDEO_OPENGL 27 #if SDL_VIDEO_OPENGL
28 #include "SDL_opengl.h"
28 #ifdef MACOSX 29 #ifdef MACOSX
29 #include <OpenGL/gl.h> /* OpenGL.framework */
30 #include <AGL/agl.h> /* AGL.framework */ 30 #include <AGL/agl.h> /* AGL.framework */
31 #else 31 #else
32 #include <gl.h>
33 #include <agl.h> 32 #include <agl.h>
34 #endif /* MACOSX */
35 #endif 33 #endif
34 #endif /* SDL_VIDEO_OPENGL */
36 35
37 /* OpenGL functions */ 36 /* OpenGL functions */
38 extern int Mac_GL_Init(_THIS); 37 extern int Mac_GL_Init(_THIS);
39 extern void Mac_GL_Quit(_THIS); 38 extern void Mac_GL_Quit(_THIS);
40 #if SDL_VIDEO_OPENGL 39 #if SDL_VIDEO_OPENGL