From: Brian Paul Date: Mon, 22 Jun 2009 23:52:08 +0000 (-0600) Subject: mesa: plug in glBindVertexArray, glGenVertexArrays functions X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=cfb815805839ecb5eb8636b1a7f643de44e04ca9;p=android-x86%2Fexternal-mesa.git mesa: plug in glBindVertexArray, glGenVertexArrays functions --- diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index 534fef00df3..e49cd041a6a 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); }