Don't incorrectly report success for negative swap intervals on Mac OS X.

This commit is contained in:
Ryan C. Gordon 2013-09-14 01:30:57 -04:00
parent c1a125c267
commit 6b60bb7ad5

View File

@ -302,6 +302,10 @@ Cocoa_GL_SetSwapInterval(_THIS, int interval)
GLint value;
int status;
if (interval < 0) { /* no extension for this on Mac OS X at the moment. */
return SDL_SetError("Late swap tearing currently unsupported");
}
pool = [[NSAutoreleasePool alloc] init];
nscontext = (NSOpenGLContext*)SDL_GL_GetCurrentContext();