summaryrefslogtreecommitdiff
path: root/src/mesa/shader/slang/slang_compile.c
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2009-12-10 12:59:23 +0100
committerMichal Krol <michal@vmware.com>2009-12-10 12:59:23 +0100
commitf00805a11756fa9d2bdfce15f51ae4798d72b5fb (patch)
tree7f28a8b0699ea75c6bbb436c4dfe3145f420de90 /src/mesa/shader/slang/slang_compile.c
parent417f36ccb062bee01aff92d6fcdf47af3ece3cb4 (diff)
slang: Predefine ES symbols for FEATURE_es2_glsl.
Diffstat (limited to 'src/mesa/shader/slang/slang_compile.c')
-rw-r--r--src/mesa/shader/slang/slang_compile.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/shader/slang/slang_compile.c b/src/mesa/shader/slang/slang_compile.c
index 00db299a27..478acb89d3 100644
--- a/src/mesa/shader/slang/slang_compile.c
+++ b/src/mesa/shader/slang/slang_compile.c
@@ -2610,6 +2610,15 @@ compile_with_grammar(const char *source,
return GL_FALSE;
}
+#if FEATURE_es2_glsl
+ if (sl_pp_context_add_predefined(context, "GL_ES", "1") ||
+ sl_pp_context_add_predefined(context, "GL_FRAGMENT_PRECISION_HIGH", "1")) {
+ slang_info_log_error(infolog, "%s", sl_pp_context_error_message(context));
+ sl_pp_context_destroy(context);
+ return GL_FALSE;
+ }
+#endif
+
memset(&options, 0, sizeof(options));
if (sl_pp_tokenise(context, source, &options, &intokens)) {
slang_info_log_error(infolog, "%s", sl_pp_context_error_message(context));