From fbff731cc31d7e92ac65945aeab3330dcab4b8e7 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Thu, 8 Jul 2021 00:19:23 -0700 Subject: [PATCH] ui: Explicitly check platform GL version --- ui/xemu.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ui/xemu.c b/ui/xemu.c index 3f02ae8f2b..d362339c86 100644 --- a/ui/xemu.c +++ b/ui/xemu.c @@ -852,6 +852,13 @@ static void sdl2_display_very_early_init(DisplayOptions *o) g_free(title); m_context = SDL_GL_CreateContext(m_window); + + if (m_context != NULL && epoxy_gl_version() < 40) { + SDL_GL_MakeCurrent(NULL, NULL); + SDL_GL_DeleteContext(m_context); + m_context = NULL; + } + if (m_context == NULL) { SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, "Unable to create OpenGL context", @@ -864,7 +871,6 @@ static void sdl2_display_very_early_init(DisplayOptions *o) SDL_Quit(); exit(1); } - SDL_GL_MakeCurrent(m_window, m_context); int width, height, channels = 0; stbi_set_flip_vertically_on_load(0);