opengl: Convert an int to an SDL_bool.

This commit is contained in:
Ryan C. Gordon 2020-04-13 14:45:40 -04:00
parent 389c8995d2
commit 64617d259a
2 changed files with 3 additions and 3 deletions

View File

@ -959,7 +959,7 @@ SDL_EGL_CreateContext(_THIS, EGLSurface egl_surface)
/* On OpenGL ES, the GL_OES_surfaceless_context extension must be /* On OpenGL ES, the GL_OES_surfaceless_context extension must be
* present. */ * present. */
if (SDL_GL_ExtensionSupported("GL_OES_surfaceless_context")) { if (SDL_GL_ExtensionSupported("GL_OES_surfaceless_context")) {
_this->gl_allow_no_surface = 1; _this->gl_allow_no_surface = SDL_TRUE;
} }
} else { } else {
/* Desktop OpenGL supports it by default from version 3.0 on. */ /* Desktop OpenGL supports it by default from version 3.0 on. */
@ -969,7 +969,7 @@ SDL_EGL_CreateContext(_THIS, EGLSurface egl_surface)
GLint v = 0; GLint v = 0;
glGetIntegervFunc(GL_MAJOR_VERSION, &v); glGetIntegervFunc(GL_MAJOR_VERSION, &v);
if (v >= 3) { if (v >= 3) {
_this->gl_allow_no_surface = 1; _this->gl_allow_no_surface = SDL_TRUE;
} }
} }
} }

View File

@ -378,7 +378,7 @@ struct SDL_VideoDevice
/* Flag that stores whether it's allowed to call SDL_GL_MakeCurrent() /* Flag that stores whether it's allowed to call SDL_GL_MakeCurrent()
* with a NULL window, but a non-NULL context. (Not allowed in most cases, * with a NULL window, but a non-NULL context. (Not allowed in most cases,
* except on EGL under some circumstances.) */ * except on EGL under some circumstances.) */
int gl_allow_no_surface; SDL_bool gl_allow_no_surface;
/* * * */ /* * * */
/* Data used by the Vulkan drivers */ /* Data used by the Vulkan drivers */