From: Alexandros Frantzis Date: Fri, 2 Dec 2011 12:14:47 +0000 (+0200) Subject: Use libGLESv2.so.2 as the OpenGL ES 2.0 library SONAME. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=4a3917d27cfc37071595b9544ec5775d8ce39c7b;p=apitrace Use libGLESv2.so.2 as the OpenGL ES 2.0 library SONAME. Although the spec doesn't propose a SONAME, this seems to be the most widely adopted name in the Linux world. --- diff --git a/glws_egl_xlib.cpp b/glws_egl_xlib.cpp index 211cb62..d614d78 100644 --- a/glws_egl_xlib.cpp +++ b/glws_egl_xlib.cpp @@ -344,7 +344,7 @@ createContext(const Visual *_visual, Context *shareContext, Profile profile) eglBindAPI(EGL_OPENGL_ES_API); break; case PROFILE_ES2: - load("libGLESv2.so.1"); + load("libGLESv2.so.2"); eglBindAPI(EGL_OPENGL_ES_API); attribs.add(EGL_CONTEXT_CLIENT_VERSION, 2); break;