diff --git a/mythtv/libs/libmythui/mythrender_opengl.cpp b/mythtv/libs/libmythui/mythrender_opengl.cpp index a77f727..10a9999 100644 --- a/mythtv/libs/libmythui/mythrender_opengl.cpp +++ b/mythtv/libs/libmythui/mythrender_opengl.cpp @@ -1,3 +1,4 @@ +#include #include using namespace std; @@ -796,6 +797,9 @@ void* MythRenderOpenGL::GetProcAddress(const QString &proc) const void *result; for (int i = 0; i < 4; i++) { + result = QLibrary::resolve("libGLESv2", (proc + exts[i]).toLatin1().data()); + if (result) + break; result = getProcAddress(proc + exts[i]); if (result) break;