diff options
author | Eric Anholt <eric@anholt.net> | 2009-08-28 15:01:56 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2009-08-28 15:29:35 -0700 |
commit | 00413d87426f14df47d90ba3c995e1889e9f88ca (patch) | |
tree | 9475b3a3c5701c0373987952af0a4f21b59d39d3 | |
parent | 8096aa521369c3bcf5226c060efa6dd06e48ddc8 (diff) |
i965: Use VBOs in the VBO module on 965, now that we have ARB_map_buffer_range.
This looks like it's a small win on blender.
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index 3c5b848319..e76e9fdcc8 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -167,6 +167,8 @@ GLboolean brwCreateContext( const __GLcontextModes *mesaVis, brw_draw_init( brw ); + vbo_use_buffer_objects(ctx); + return GL_TRUE; } |