summaryrefslogtreecommitdiff
path: root/src/mesa/shader/slang/slang_compile_operation.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-10-31 17:27:41 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-10-31 17:42:26 -0600
commit90711775d74d7a48fd740fadc04e9aaae106a89d (patch)
tree7273a0eed53a8b8feceda20a090963448a26b213 /src/mesa/shader/slang/slang_compile_operation.c
parent89bca902b35f938924cc4423a8d9374ddbb536df (diff)
mesa: do scope replacement for variable initializers too
Diffstat (limited to 'src/mesa/shader/slang/slang_compile_operation.c')
-rw-r--r--src/mesa/shader/slang/slang_compile_operation.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mesa/shader/slang/slang_compile_operation.c b/src/mesa/shader/slang/slang_compile_operation.c
index c0d469c829..1002be16cb 100644
--- a/src/mesa/shader/slang/slang_compile_operation.c
+++ b/src/mesa/shader/slang/slang_compile_operation.c
@@ -84,6 +84,17 @@ slang_replace_scope(slang_operation *oper,
oper->locals->outer_scope == oldScope) {
oper->locals->outer_scope = newScope;
}
+
+ if (oper->type == SLANG_OPER_VARIABLE_DECL) {
+ slang_variable *var;
+ var = _slang_locate_variable(oper->locals, oper->a_id, GL_TRUE);
+ if (var && var->initializer) {
+ printf("replace scope for %s initializer\n",
+ (char *) var->a_name);
+ slang_replace_scope(var->initializer, oldScope, newScope);
+ }
+ }
+
for (i = 0; i < oper->num_children; i++) {
slang_replace_scope(&oper->children[i], oldScope, newScope);
}