Change method of identifying the graphics engine currently in use.

This commit is contained in:
Seeker4 2019-06-07 05:14:07 -07:00
parent b92502ac63
commit c684eebca7

View File

@ -151,10 +151,7 @@ float getOpenGLVersion()
#endif #endif
} }
// Obtains graphic engine as a string, for use in title bar // Obtains graphic engine as a string
// This is a bad approach as it depends on the exact version
// id strings to distinguish engines.
// (But too much work to find an alternate solution today)
// This works on Windows. Don't know about other platforms. // This works on Windows. Don't know about other platforms.
QString getGraphicsEngine() QString getGraphicsEngine()
{ {
@ -162,15 +159,12 @@ QString getGraphicsEngine()
#ifdef BROKEN_OPENGL_BUILD #ifdef BROKEN_OPENGL_BUILD
gfxEngine = CSTR_GFX_BrokenGL; gfxEngine = CSTR_GFX_BrokenGL;
#else #else
QString glversion = getOpenGLVersionString(); if (QCoreApplication::testAttribute(Qt::AA_UseSoftwareOpenGL))
// qDebug() << "Graphics Engine" << glversion;
if (glversion.contains(CSTR_GFX_ANGLE)) {
gfxEngine = CSTR_GFX_ANGLE;
} else if (glversion.contains("Mesa")) {
gfxEngine = CSTR_GFX_BrokenGL; gfxEngine = CSTR_GFX_BrokenGL;
} else { else if (QCoreApplication::testAttribute(Qt::AA_UseOpenGLES))
gfxEngine = CSTR_GFX_ANGLE;
else
gfxEngine = CSTR_GFX_OpenGL; gfxEngine = CSTR_GFX_OpenGL;
}
#endif #endif
return gfxEngine; return gfxEngine;
} }