From 319b83b3ee2629f443a8734256bbf33b3fb4a7a9 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Fri, 24 Jul 2015 12:02:57 +1000 Subject: [PATCH] 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 Signed-off-by: Dave Airlie --- 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 66bc79ac405..3a0eb1869a8 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: # -- 2.30.2