diff options
author | Brian Paul <[email protected]> | 2003-03-29 17:01:00 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-03-29 17:01:00 +0000 |
commit | 6061df09a45c42745253965df012ddf76910ea33 (patch) | |
tree | acd5b5c2c78ce779208e832362b592105b42c15c /src/mesa/main/extensions.c | |
parent | c13a05547de406985b3bf3f5e4473eff050b5ac7 (diff) |
Basic infrastructure for GL_ARB_vertex_buffer_object.
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 7e1f2038723..88616b63093 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.88 2003/01/21 21:47:49 brianp Exp $ */ +/* $Id: extensions.c,v 1.89 2003/03/29 17:01:01 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -67,6 +67,7 @@ static struct { { OFF, "GL_ARB_texture_env_dot3", F(ARB_texture_env_dot3) }, { OFF, "GL_ARB_texture_mirrored_repeat", F(ARB_texture_mirrored_repeat)}, { ON, "GL_ARB_transpose_matrix", 0 }, + { OFF, "GL_ARB_vertex_buffer_object", F(ARB_vertex_buffer_object) }, { ON, "GL_ARB_window_pos", F(ARB_window_pos) }, { OFF, "GL_ATI_texture_mirror_once", F(ATI_texture_mirror_once)}, { OFF, "GL_ATI_texture_env_combine3", F(ATI_texture_env_combine3)}, |