diff options
author | Marek Olšák <[email protected]> | 2014-08-03 04:42:50 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-08-11 21:53:57 +0200 |
commit | 858452e54242011d77e4d0364ff05497795c3c4f (patch) | |
tree | dfcb8fae9d982ca88ce3ce2497920796b024b4d4 /src/mesa/main/context.c | |
parent | 35e755faa7d0c9e2db079df47804977388c43c99 (diff) |
mesa: make _mesa_init_extensions context-independent
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 0f28dbf7341..e08f7288b69 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -793,7 +793,7 @@ init_attrib_groups(struct gl_context *ctx) _mesa_init_constants( ctx ); /* Extensions */ - _mesa_init_extensions( ctx ); + _mesa_init_extensions(&ctx->Extensions); /* Attribute Groups */ _mesa_init_accum( ctx ); |