diff options
author | Marek Olšák <[email protected]> | 2014-08-03 03:40:49 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-08-11 21:53:57 +0200 |
commit | d9a6f4360a617fccfb3987f9ec276012a9a14b75 (patch) | |
tree | c8da58890a4aa77a63a21643083aec115fea2575 /src/mesa/main/context.c | |
parent | c6cbde5008e27cccb06411146bc673835991ae91 (diff) |
mesa: make _mesa_override_glsl_version 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 50aae8bf6fa..0f28dbf7341 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -641,7 +641,7 @@ _mesa_init_constants(struct gl_context *ctx) /* Shading language version */ if (_mesa_is_desktop_gl(ctx)) { ctx->Const.GLSLVersion = 120; - _mesa_override_glsl_version(ctx); + _mesa_override_glsl_version(&ctx->Const); } else if (ctx->API == API_OPENGLES2) { ctx->Const.GLSLVersion = 100; |