diff options
author | Jordan Justen <[email protected]> | 2012-11-19 11:21:05 -0800 |
---|---|---|
committer | Jordan Justen <[email protected]> | 2012-12-16 15:30:28 -0800 |
commit | 075f8722ab78df32878e9b6b721a1263cea53b27 (patch) | |
tree | ccf8265d5bbfa910c58f4948aef1b7e3d13c9a50 /src/mesa/main/context.c | |
parent | 53ee3959f2d695ae442dcadcbce2971a9e26e99c (diff) |
mesa: don't initialize VBO vtxfmt in _vbo_CreateContext
The driver should call _mesa_initialize_vbo_vtxfmt after
computing the context version.
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index c1624bf724e..ce4188fe2a3 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -971,7 +971,6 @@ _mesa_initialize_context(struct gl_context *ctx, return GL_FALSE; } - _mesa_install_save_vtxfmt( ctx, &ctx->ListState.ListVtxfmt ); /* fall-through */ case API_OPENGL_CORE: break; |