OSDN Git Service

mesa: plug in glBindVertexArray, glGenVertexArrays functions
authorBrian Paul <brianp@vmware.com>
Mon, 22 Jun 2009 23:52:08 +0000 (17:52 -0600)
committerBrian Paul <brianp@vmware.com>
Mon, 22 Jun 2009 23:52:08 +0000 (17:52 -0600)
src/mesa/main/api_exec.c

index 534fef0..e49cd04 100644 (file)
@@ -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);
 }