From cfb815805839ecb5eb8636b1a7f643de44e04ca9 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 22 Jun 2009 17:52:08 -0600 Subject: [PATCH] mesa: plug in glBindVertexArray, glGenVertexArrays functions --- src/mesa/main/api_exec.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index 534fef0..e49cd041 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); } -- 2.7.4