comparison src/video/maccommon/SDL_lowvideo.h @ 1424:7a610f25c12f

Updated MacOS Classic MPW build
author Sam Lantinga <slouken@libsdl.org>
date Fri, 24 Feb 2006 09:57:14 +0000
parents d910939febfa
children 0801c9fdbdd6
comparison
equal deleted inserted replaced
1423:4ed717f9e509 1424:7a610f25c12f
34 #include <Menus.h> 34 #include <Menus.h>
35 #include <DrawSprocket.h> 35 #include <DrawSprocket.h>
36 #endif 36 #endif
37 37
38 #if SDL_VIDEO_OPENGL 38 #if SDL_VIDEO_OPENGL
39 #include "SDL_opengl.h" 39 #ifdef MACOSX
40 #include <OpenGL/gl.h> /* OpenGL.framework */
41 #include <AGL/agl.h> /* AGL.framework */
42 #else
43 #include <gl.h>
44 #include <agl.h>
45 #endif /* MACOSX */
40 #endif 46 #endif
41 47
42 #include "SDL_video.h" 48 #include "SDL_video.h"
43 #include "../SDL_sysvideo.h" 49 #include "../SDL_sysvideo.h"
44 50