1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Allows for failure to get a GL context as a reportable issue.

This commit is contained in:
Thomas Harte 2019-02-20 22:06:22 -05:00
parent 080f949f89
commit e43de5f1ba

View File

@ -455,13 +455,13 @@ int main(int argc, char *argv[]) {
400, 300,
SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE);
if(!window)
SDL_GLContext gl_context = SDL_GL_CreateContext(window);
if(!window || !gl_context)
{
std::cerr << "Could not create window" << std::endl;
std::cerr << "Could not create window; error: " << SDL_GetError() << std::endl;
return -1;
}
SDL_GLContext gl_context = SDL_GL_CreateContext(window);
SDL_GL_MakeCurrent(window, gl_context);
GLint target_framebuffer = 0;