projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
31618f1
)
mesa: plug in glBindVertexArray, glGenVertexArrays functions
author
Brian Paul
<brianp@vmware.com>
Mon, 22 Jun 2009 23:52:08 +0000
(17:52 -0600)
committer
Brian Paul
<brianp@vmware.com>
Mon, 22 Jun 2009 23:52:08 +0000
(17:52 -0600)
src/mesa/main/api_exec.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/api_exec.c
b/src/mesa/main/api_exec.c
index 534fef00df3080c112c7869b72abac21774ea4dd..e49cd041a6aa3a40b272878c1b6679c4907aaddf 100644
(file)
--- 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);
}