diff options
author | Brian Paul <[email protected]> | 2010-10-28 21:17:41 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-10-28 21:17:41 -0600 |
commit | ba9995953c347b074b2f9df0053fa85040b4af83 (patch) | |
tree | 07d4719a1a0be155c04e832ed7e2156313aa4bf4 /src | |
parent | 9c61ca90eaf466211281eba6cacb243d4ed8db5b (diff) |
mesa: plug in more GL_EXT_gpu_shader4 functions
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/api_exec.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index cd002f6bc27..9cba6320d0d 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; } |