diff options
author | Brian Paul <[email protected]> | 2009-06-22 17:52:08 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-06-22 17:52:08 -0600 |
commit | cfb815805839ecb5eb8636b1a7f643de44e04ca9 (patch) | |
tree | e076e6d6edf2e82592907639b9502778ba56ca52 /src/mesa/main | |
parent | 31618f1a88877e54643718d27d70ec8a287e2f7b (diff) |
mesa: plug in glBindVertexArray, glGenVertexArrays functions
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | 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 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); } |