summaryrefslogtreecommitdiff
path: root/src/mesa/main/api_exec.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-06-22 17:52:08 -0600
committerBrian Paul <brianp@vmware.com>2009-06-22 17:52:08 -0600
commitcfb815805839ecb5eb8636b1a7f643de44e04ca9 (patch)
treee076e6d6edf2e82592907639b9502778ba56ca52 /src/mesa/main/api_exec.c
parent31618f1a88877e54643718d27d70ec8a287e2f7b (diff)
mesa: plug in glBindVertexArray, glGenVertexArrays functions
Diffstat (limited to 'src/mesa/main/api_exec.c')
-rw-r--r--src/mesa/main/api_exec.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c
index 534fef00df..e49cd041a6 100644
--- a/src/mesa/main/api_exec.c
+++ b/src/mesa/main/api_exec.c
@@ -904,4 +904,8 @@ _mesa_init_exec_table(struct _glapi_table *exec)
/* GL_ARB_copy_buffer */
SET_CopyBufferSubData(exec, _mesa_CopyBufferSubData);
+
+ /* GL_ARB_vertex_array_object */
+ SET_BindVertexArray(exec, _mesa_BindVertexArray);
+ SET_GenVertexArrays(exec, _mesa_GenVertexArrays);
}