diff options
author | Vincent Lejeune <[email protected]> | 2012-11-23 17:53:06 +0100 |
---|---|---|
committer | Vincent Lejeune <[email protected]> | 2012-12-05 18:23:42 +0100 |
commit | e9f090e8b2ca2eda3e9a1b1c3ba4acce843720ba (patch) | |
tree | 65be1e7edbd4d59498d5f6a2c7670b8325f55857 /src/glsl | |
parent | d2c7fe5389e40871a7e339dc0ecaa7f570f851ed (diff) |
glsl: add new variable declaration in function body in lower_output_read
Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>
Diffstat (limited to 'src/glsl')
-rw-r--r-- | src/glsl/lower_output_reads.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/lower_output_reads.cpp b/src/glsl/lower_output_reads.cpp index 90d71b04a1f..a6192a51707 100644 --- a/src/glsl/lower_output_reads.cpp +++ b/src/glsl/lower_output_reads.cpp @@ -97,6 +97,7 @@ output_read_remover::visit(ir_dereference_variable *ir) temp = new(var_ctx) ir_variable(ir->var->type, ir->var->name, ir_var_temporary); hash_table_insert(replacements, temp, ir->var); + ir->var->insert_after(temp); } /* Update the dereference to use the temporary */ |