diff --git a/mythtv/libs/libmythui/mythrender_opengl.cpp b/mythtv/libs/libmythui/mythrender_opengl.cpp
index 1b3049a..e69fafc 100644
a
|
b
|
void* MythRenderOpenGL::GetProcAddress(const QString &proc) const |
801 | 801 | void *result; |
802 | 802 | for (int i = 0; i < 4; i++) |
803 | 803 | { |
| 804 | #ifdef USING_OPENGLES |
804 | 805 | result = reinterpret_cast<void*>( |
805 | 806 | QLibrary::resolve("libGLESv2", (proc + exts[i]).toLatin1().data())); |
806 | 807 | if (result) |
807 | 808 | break; |
| 809 | #endif |
808 | 810 | result = reinterpret_cast<void*>(getProcAddress(proc + exts[i])); |
809 | 811 | if (result) |
810 | 812 | break; |