diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mapi/glapi/gen/gl_genexec.py | 1 | ||||
-rw-r--r-- | src/mesa/main/context.c | 2 | ||||
-rw-r--r-- | src/mesa/main/vtxfmt.c | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/src/mapi/glapi/gen/gl_genexec.py b/src/mapi/glapi/gen/gl_genexec.py index 7952ace280f..da9ae716a54 100644 --- a/src/mapi/glapi/gen/gl_genexec.py +++ b/src/mapi/glapi/gen/gl_genexec.py @@ -127,6 +127,7 @@ _mesa_initialize_exec_table(struct gl_context *ctx) exec = ctx->Exec; assert(exec != NULL); + assert(ctx->Version > 0); """ diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index ce4188fe2a3..fc2db127161 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1461,7 +1461,7 @@ _mesa_make_current( struct gl_context *newCtx, } if (newCtx->FirstTimeCurrent) { - _mesa_compute_version(newCtx); + assert(newCtx->Version > 0); newCtx->Extensions.String = _mesa_make_extension_string(newCtx); diff --git a/src/mesa/main/vtxfmt.c b/src/mesa/main/vtxfmt.c index 5f42b338d0e..6d687de606b 100644 --- a/src/mesa/main/vtxfmt.c +++ b/src/mesa/main/vtxfmt.c @@ -47,6 +47,8 @@ static void install_vtxfmt(struct gl_context *ctx, struct _glapi_table *tab, const GLvertexformat *vfmt) { + assert(ctx->Version > 0); + if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { SET_Color4f(tab, vfmt->Color4f); } |