summaryrefslogtreecommitdiffstats
path: root/src/mapi/glapi/gen/apiexec.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mapi/glapi/gen/apiexec.py')
-rw-r--r--src/mapi/glapi/gen/apiexec.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mapi/glapi/gen/apiexec.py b/src/mapi/glapi/gen/apiexec.py
index b623b44beeb..66bc79ac405 100644
--- a/src/mapi/glapi/gen/apiexec.py
+++ b/src/mapi/glapi/gen/apiexec.py
@@ -74,6 +74,17 @@ functions = {
# GL_ARB_geometry_shader4, so OpenGL 3.2 is required.
"FramebufferTexture": exec_info(core=32),
+ # 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),
+
# OpenGL 4.0 / GL_ARB_gpu_shader_fp64. The extension spec says:
#
# "OpenGL 3.2 and GLSL 1.50 are required."