Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7889e33e authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 8997

* changes:
  GLESv2 couldn't be loaded due to wrong path specification
parents 033aa3b3 574c16f9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -149,7 +149,7 @@ void* Loader::open(EGLNativeDisplayType display, int impl, gl_hooks_t* hooks)
            hnd = new driver_t(dso);
        } else {
            // Always load EGL first
            snprintf(path, PATH_MAX, "lib%s_%s.so", "EGL", tag);
            snprintf(path, PATH_MAX, format, "EGL", tag);
            dso = load_driver(path, hooks, EGL);
            if (dso) {
                hnd = new driver_t(dso);