Module: Mesa Branch: master Commit: cfb815805839ecb5eb8636b1a7f643de44e04ca9 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=cfb815805839ecb5eb8636b1a7f643de44e04ca9
Author: Brian Paul <[email protected]> Date: Mon Jun 22 17:52:08 2009 -0600 mesa: plug in glBindVertexArray, glGenVertexArrays functions --- src/mesa/main/api_exec.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index 534fef0..e49cd04 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); } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
