Make opengl loader use an absolute path.
diff --git a/opengl/libs/EGL/Loader.cpp b/opengl/libs/EGL/Loader.cpp
index 4f9939f..7f3f114 100644
--- a/opengl/libs/EGL/Loader.cpp
+++ b/opengl/libs/EGL/Loader.cpp
@@ -139,7 +139,7 @@
     char path[PATH_MAX];
     int index = int(display);
     driver_t* hnd = 0;
-    const char* const format = "egl/lib%s_%s.so";
+    const char* const format = "/system/lib/egl/lib%s_%s.so";
     
     char const* tag = getTag(index, impl);
     if (tag) {