Mesa (master): apiexec: remove leading gl from shader subroutine interfaces

Dave Airlie airlied at kemper.freedesktop.org
Fri Jul 24 02:07:18 UTC 2015


Module: Mesa
Branch: master
Commit: 319b83b3ee2629f443a8734256bbf33b3fb4a7a9
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=319b83b3ee2629f443a8734256bbf33b3fb4a7a9

Author: Dave Airlie <airlied at redhat.com>
Date:   Fri Jul 24 12:02:57 2015 +1000

apiexec: remove leading gl from shader subroutine interfaces

Remove the gl at the start, stared at this for a while
yesterday, totally missed it.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=91441
Reviewed-by: Ilia Mirkin <imirkin at alum.mit.edu>
Signed-off-by: Dave Airlie <airlied at redhat.com>

---

 src/mapi/glapi/gen/apiexec.py |   16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/mapi/glapi/gen/apiexec.py b/src/mapi/glapi/gen/apiexec.py
index 66bc79a..3a0eb18 100644
--- a/src/mapi/glapi/gen/apiexec.py
+++ b/src/mapi/glapi/gen/apiexec.py
@@ -76,14 +76,14 @@ functions = {
 
     # OpenGL 4.0 / GL_ARB_shader_subroutines. Mesa only exposes this
     # extension with core profile.
-    "glGetSubroutineUniformLocation": exec_info(core=31),
-    "glGetSubroutineIndex": exec_info(core=31),
-    "glGetActiveSubroutineUniformiv": exec_info(core=31),
-    "glGetActiveSubroutineUniformName": exec_info(core=31),
-    "glGetActiveSubroutineName": exec_info(core=31),
-    "glUniformSubroutinesuiv": exec_info(core=31),
-    "glGetUniformSubroutineuiv": exec_info(core=31),
-    "glGetProgramStageiv": exec_info(core=31),
+    "GetSubroutineUniformLocation": exec_info(core=31),
+    "GetSubroutineIndex": exec_info(core=31),
+    "GetActiveSubroutineUniformiv": exec_info(core=31),
+    "GetActiveSubroutineUniformName": exec_info(core=31),
+    "GetActiveSubroutineName": exec_info(core=31),
+    "UniformSubroutinesuiv": exec_info(core=31),
+    "GetUniformSubroutineuiv": exec_info(core=31),
+    "GetProgramStageiv": exec_info(core=31),
 
     # OpenGL 4.0 / GL_ARB_gpu_shader_fp64.  The extension spec says:
     #




More information about the mesa-commit mailing list