summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/dlist.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-05-26 19:25:44 -0600
committerBrian Paul <brianp@vmware.com>2011-05-26 19:25:44 -0600
commit6126d50e75f1d8ef2e65c5df844e50a1b7f415f9 (patch)
tree530c92ca874df3a93558a5b25bbfbaff2f302e5d /src/mesa/main/dlist.c
parente00481586c6fe87c5bf8753f9502d220ea46763a (diff)
downloadexternal_mesa3d-6126d50e75f1d8ef2e65c5df844e50a1b7f415f9.zip
external_mesa3d-6126d50e75f1d8ef2e65c5df844e50a1b7f415f9.tar.gz
external_mesa3d-6126d50e75f1d8ef2e65c5df844e50a1b7f415f9.tar.bz2
mesa: plug in GL_ARB_vertex_array_object display list functions
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r--src/mesa/main/dlist.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c
index c2cd96e..5acbb7a 100644
--- a/src/mesa/main/dlist.c
+++ b/src/mesa/main/dlist.c
@@ -10104,6 +10104,10 @@ _mesa_create_save_table(void)
SET_GenVertexArraysAPPLE(table, _mesa_GenVertexArraysAPPLE);
SET_IsVertexArrayAPPLE(table, _mesa_IsVertexArrayAPPLE);
+ /* GL_ARB_vertex_array_object */
+ SET_BindVertexArray(table, _mesa_BindVertexArray);
+ SET_GenVertexArrays(table, _mesa_GenVertexArrays);
+
/* ???. GL_EXT_depth_bounds_test */
SET_DepthBoundsEXT(table, save_DepthBoundsEXT);