- Remove GL_MAJOR_VERSION check for OpenGL ES as apparently not even this can be done right by driver writers

This commit is contained in:
Magnus Norddahl 2017-04-08 00:19:39 +02:00
parent 3a36ffee35
commit 9f180b29b9
1 changed files with 1 additions and 6 deletions

View File

@ -203,12 +203,7 @@ OpenGLSWFrameBuffer::OpenGLSWFrameBuffer(void *hMonitor, int width, int height,
const char *glversion = (const char*)glGetString(GL_VERSION); const char *glversion = (const char*)glGetString(GL_VERSION);
bool isGLES = (glversion && strlen(glversion) > 10 && memcmp(glversion, "OpenGL ES ", 10) == 0); bool isGLES = (glversion && strlen(glversion) > 10 && memcmp(glversion, "OpenGL ES ", 10) == 0);
if (isGLES && ogl_IsVersionGEQ(2, 0) == 0) if (!isGLES && ogl_IsVersionGEQ(3, 0) == 0)
{
Printf("OpenGL acceleration requires at least OpenGL ES 2.0. No Acceleration will be used.\n");
return;
}
else if (!isGLES && ogl_IsVersionGEQ(3, 0) == 0)
{ {
Printf("OpenGL acceleration requires at least OpenGL 3.0. No Acceleration will be used.\n"); Printf("OpenGL acceleration requires at least OpenGL 3.0. No Acceleration will be used.\n");
return; return;