commit | 574c16f9f89ab18c7b54e9b262ef3d5359a2a709 | [log] [tgz] |
---|---|---|
author | Mathias Agopian <mathias@google.com> | Wed Jul 29 11:10:29 2009 -0700 |
committer | Mathias Agopian <mathias@google.com> | Wed Jul 29 11:10:29 2009 -0700 |
tree | bc6ce9c8523f03f0e338acce9fb8569a6d38ccc3 | |
parent | 34f525c9137dcd33790befe7f96240aa0c6c6ede [diff] [blame] |
GLESv2 couldn't be loaded due to wrong path specification
diff --git a/opengl/libs/EGL/Loader.cpp b/opengl/libs/EGL/Loader.cpp index 7f3f114..445e681 100644 --- a/opengl/libs/EGL/Loader.cpp +++ b/opengl/libs/EGL/Loader.cpp
@@ -149,7 +149,7 @@ 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);