mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
Winlayer: Bound code with USE_GLEXT where missed in r5526.
Also make some dead GL debugging code not dead during debug builds. git-svn-id: https://svn.eduke32.com/eduke32@5550 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
c52b90a0a2
commit
da1081112c
1 changed files with 6 additions and 2 deletions
|
@ -1715,7 +1715,7 @@ int32_t setvideomode(int32_t x, int32_t y, int32_t c, int32_t fs)
|
|||
if (gammabrightness && setgamma() < 0) gammabrightness = 0;
|
||||
}
|
||||
|
||||
#ifdef USE_OPENGL
|
||||
#if defined USE_OPENGL && defined USE_GLEXT
|
||||
if (hGLWindow && glinfo.vsync) bwglSwapIntervalEXT(vsync_render);
|
||||
#endif
|
||||
if (inp) AcquireInputDevices(1);
|
||||
|
@ -1752,7 +1752,9 @@ void setvsync(int32_t sync)
|
|||
return;
|
||||
}
|
||||
vsync_render = sync;
|
||||
# ifdef USE_GLEXT
|
||||
bwglSwapIntervalEXT(sync);
|
||||
# endif
|
||||
}
|
||||
|
||||
static void cdsenummodes(void)
|
||||
|
@ -2760,9 +2762,10 @@ static int32_t SetupOpenGL(int32_t width, int32_t height, int32_t bitspp)
|
|||
|
||||
loadglextensions();
|
||||
|
||||
# if defined DEBUGGINGAIDS && defined USE_GLEXT
|
||||
// We should really be checking for the new WGL extension string instead
|
||||
// Enable this to leverage ARB_debug_output
|
||||
if (bwglCreateContextAttribsARB && 0) {
|
||||
if (bwglCreateContextAttribsARB) {
|
||||
HGLRC debuggingContext = hGLRC;
|
||||
|
||||
// This corresponds to WGL_CONTEXT_FLAGS_ARB set to WGL_CONTEXT_DEBUG_BIT_ARB
|
||||
|
@ -2783,6 +2786,7 @@ static int32_t SetupOpenGL(int32_t width, int32_t height, int32_t bitspp)
|
|||
loadglextensions();
|
||||
}
|
||||
}
|
||||
# endif
|
||||
|
||||
polymost_glreset();
|
||||
|
||||
|
|
Loading…
Reference in a new issue