summaryrefslogtreecommitdiff
path: root/src/mesa/main/api_exec.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-10-28 21:17:41 -0600
committerBrian Paul <brianp@vmware.com>2010-10-28 21:17:41 -0600
commitba9995953c347b074b2f9df0053fa85040b4af83 (patch)
tree07d4719a1a0be155c04e832ed7e2156313aa4bf4 /src/mesa/main/api_exec.c
parent9c61ca90eaf466211281eba6cacb243d4ed8db5b (diff)
mesa: plug in more GL_EXT_gpu_shader4 functions
Diffstat (limited to 'src/mesa/main/api_exec.c')
-rw-r--r--src/mesa/main/api_exec.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c
index cd002f6bc2..9cba6320d0 100644
--- a/src/mesa/main/api_exec.c
+++ b/src/mesa/main/api_exec.c
@@ -734,6 +734,11 @@ _mesa_create_exec_table(void)
SET_TexParameterIivEXT(exec, _mesa_TexParameterIiv);
SET_TexParameterIuivEXT(exec, _mesa_TexParameterIuiv);
+ /* GL_EXT_gpu_shader4 / OpenGL 3.0 */
+ SET_GetVertexAttribIivEXT(exec, _mesa_GetVertexAttribIiv);
+ SET_GetVertexAttribIuivEXT(exec, _mesa_GetVertexAttribIuiv);
+ SET_VertexAttribIPointerEXT(exec, _mesa_VertexAttribIPointer);
+
return exec;
}