Fix 3 segment opengl versions

This commit is contained in:
Mark Watkins 2014-06-03 15:53:33 +10:00
parent 5aebc3ade1
commit ba51fcc8e3

View File

@ -86,6 +86,15 @@ float getOpenGLVersion()
bool ok;
float v = glversion.toFloat(&ok);
if (!ok) {
QString tmp = glversion.section(".",0,1);
v = tmp.toFloat(&ok);
if (!ok) {
// just look at major, we are only interested in whether we have OpenGL 2.0 anyway
tmp = glversion.section(".",0,0);
v = tmp.toFloat(&ok);
}
}
return v;
}