From: Brian Date: Sat, 31 Mar 2007 15:09:21 +0000 (-0600) Subject: fix scoping mistake in previous commit that checked for writable LHSs X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ec6c8f86f3fa0fa19d34dfa1ee1f9e4610e6e9d6;p=mesa.git fix scoping mistake in previous commit that checked for writable LHSs --- diff --git a/src/mesa/shader/slang/slang_codegen.c b/src/mesa/shader/slang/slang_codegen.c index b1f6db8ac36..0c14e64cf97 100644 --- a/src/mesa/shader/slang/slang_codegen.c +++ b/src/mesa/shader/slang/slang_codegen.c @@ -2143,7 +2143,7 @@ _slang_gen_assignment(slang_assemble_ctx * A, slang_operation *oper) if (oper->children[0].type == SLANG_OPER_IDENTIFIER) { /* Check that var is writeable */ slang_variable *var - = _slang_locate_variable(oper->locals, + = _slang_locate_variable(oper->children[0].locals, oper->children[0].a_id, GL_TRUE); if (!var) { slang_info_log_error(A->log, "undefined variable '%s'",