summaryrefslogtreecommitdiffstats
path: root/src/glsl/main.cpp
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2012-12-05 12:56:16 -0800
committerCarl Worth <cworth@cworth.org>2013-01-11 13:55:41 -0800
commitf8987f99720c46dda1adfff05bcb2884cac01bd8 (patch)
treed9c04d673340c47d6c1661a27fa3729f1546bc54 /src/glsl/main.cpp
parent4b00ecebd0019202315f0f4a9e6105d962e659f7 (diff)
downloadexternal_mesa3d-f8987f99720c46dda1adfff05bcb2884cac01bd8.zip
external_mesa3d-f8987f99720c46dda1adfff05bcb2884cac01bd8.tar.gz
external_mesa3d-f8987f99720c46dda1adfff05bcb2884cac01bd8.tar.bz2
glcpp: Accept pointer to GL context rather than just the API version
As the preprocessor becomes more sophisticated and gains more optional behavior, it's easiest to just pass the GL context pointer to it so that it can examine any fields there that it needs to (such as API version, or the state of any driconf options, etc.). Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/glsl/main.cpp')
-rw-r--r--src/glsl/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/main.cpp b/src/glsl/main.cpp
index a84d010..ed6f122 100644
--- a/src/glsl/main.cpp
+++ b/src/glsl/main.cpp
@@ -146,7 +146,7 @@ compile_shader(struct gl_context *ctx, struct gl_shader *shader)
const char *source = shader->Source;
state->error = glcpp_preprocess(state, &source, &state->info_log,
- state->extensions, ctx->API) != 0;
+ state->extensions, ctx) != 0;
if (!state->error) {
_mesa_glsl_lexer_ctor(state, source);