aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2013-01-01 11:18:58 -0800
committerMatt Turner <mattst88@gmail.com>2013-01-01 11:18:58 -0800
commit1ba301aeae25c8284538d00671ff0bd6c9528925 (patch)
tree189b2c9914d93c8f5ac0d3553114d947c734b9c9
parentopengl: support gles only implementation (diff)
downloadeselect-1ba301aeae25c8284538d00671ff0bd6c9528925.tar.gz
eselect-1ba301aeae25c8284538d00671ff0bd6c9528925.tar.bz2
eselect-1ba301aeae25c8284538d00671ff0bd6c9528925.zip
opengl: Handle GLES3 switching
-rw-r--r--ChangeLog4
-rw-r--r--modules/opengl.eselect3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c723984..d4c3a67 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-01-01 Matt Turner <mattst88@gentoo.org>
+
+ * modules/opengl.eselect: switch GLES3, bug #444114.
+
2012-03-08 Ulrich Müller <ulm@gentoo.org>
* modules/esd.eselect (VERSION):
diff --git a/modules/opengl.eselect b/modules/opengl.eselect
index fa1e8f7..6bffb74 100644
--- a/modules/opengl.eselect
+++ b/modules/opengl.eselect
@@ -250,10 +250,11 @@ set_new_implementation() {
gl_header[GL]="gl.h glx.h glxtokens.h glext.h glxext.h glxmd.h glxproto.h"
gl_header[GLES]="egl.h gl_extensions.h glext.h gl.h glplatform.h"
gl_header[GLES2]="gl2ext.h gl2.h gl2platform.h"
+ gl_header[GLES3]="gl3ext.h gl3.h gl3platform.h"
gl_header[EGL]="eglext.h egl.h eglplatform.h"
gl_header[KHR]="khrplatform.h"
gl_header[VG]="openvg.h vgext.h vgplatform.h vgu.h"
- for gl_dir in {EGL,GL,GLES,GLES2,KHR,VG}; do
+ for gl_dir in {EGL,GL,GLES,GLES2,GLES3,KHR,VG}; do
setup_includes_symlinks \
"${DST_PREFIX}/include/${gl_dir}" \
"${gl_header[${gl_dir}]}" \