Mercurial > sdl-ios-xcode
diff src/video/cocoa/SDL_cocoaopengl.m @ 4925:514f811a4887
Removed support for 10.3.9
Fixed building on Mac OS X 10.5
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 01 Dec 2010 12:23:16 -0800 |
parents | 3d91e31fcf71 |
children | 58265e606e4e |
line wrap: on
line diff
--- a/src/video/cocoa/SDL_cocoaopengl.m Wed Dec 01 12:22:29 2010 -0800 +++ b/src/video/cocoa/SDL_cocoaopengl.m Wed Dec 01 12:23:16 2010 -0800 @@ -36,16 +36,6 @@ #define DEFAULT_OPENGL "/System/Library/Frameworks/OpenGL.framework/Libraries/libGL.dylib" -/* This is implemented in Mac OS X 10.3 and above */ -#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_3 -@implementation NSOpenGLContext(CGLContextAccess) -- (CGLContextObj)CGLContextObj; -{ - return _contextAuxiliary; -} -@end -#endif /* < 10.3 */ - int Cocoa_GL_LoadLibrary(_THIS, const char *path) { @@ -180,7 +170,7 @@ #endif { - long cache_max = 64; + GLint cache_max = 64; CGLContextObj ctx = [context CGLContextObj]; CGLSetParameter (ctx, GLI_SUBMIT_FUNC_CACHE_MAX, &cache_max); CGLSetParameter (ctx, GLI_ARRAY_FUNC_CACHE_MAX, &cache_max);