mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-24 13:01:48 +00:00
Merge branch 'master' of https://github.com/coelckers/gzdoom
This commit is contained in:
commit
49605bc109
1 changed files with 10 additions and 0 deletions
|
@ -442,6 +442,16 @@ void SDLGLFB::SetVSync( bool vsync )
|
||||||
#if defined (__APPLE__)
|
#if defined (__APPLE__)
|
||||||
const GLint value = vsync ? 1 : 0;
|
const GLint value = vsync ? 1 : 0;
|
||||||
CGLSetParameter( CGLGetCurrentContext(), kCGLCPSwapInterval, &value );
|
CGLSetParameter( CGLGetCurrentContext(), kCGLCPSwapInterval, &value );
|
||||||
|
#else
|
||||||
|
if (vsync)
|
||||||
|
{
|
||||||
|
if (SDL_GL_SetSwapInterval(-1) == -1)
|
||||||
|
SDL_GL_SetSwapInterval(1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
SDL_GL_SetSwapInterval(0);
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue