From: Dave Airlie Date: Fri, 24 Jul 2015 02:02:57 +0000 (+1000) Subject: apiexec: remove leading gl from shader subroutine interfaces X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=319b83b3ee2629f443a8734256bbf33b3fb4a7a9;p=mesa.git 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 --- 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: #