summaryrefslogtreecommitdiffstats
path: root/src/glsl/nir/nir_lower_system_values.c
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2015-01-23 16:57:40 -0800
committerJason Ekstrand <[email protected]>2015-01-26 11:24:58 -0800
commit27c6e3e4ca665c528b94937b1b0a7c10de515d89 (patch)
tree8a0be107cd9b3cf5ff26bc3731bbbbd6b9231288 /src/glsl/nir/nir_lower_system_values.c
parent9f5fee880470a7e317aad35d4521cd525714455f (diff)
nir: Use pointers for nir_src_copy and nir_dest_copy
This avoids the overhead of copying structures and better matches the newly added nir_alu_src_copy and nir_alu_dest_copy. Reviewed-by: Eric Anholt <[email protected]> Reviewed-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src/glsl/nir/nir_lower_system_values.c')
-rw-r--r--src/glsl/nir/nir_lower_system_values.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/nir/nir_lower_system_values.c b/src/glsl/nir/nir_lower_system_values.c
index dc12f406e7c..90346c975c1 100644
--- a/src/glsl/nir/nir_lower_system_values.c
+++ b/src/glsl/nir/nir_lower_system_values.c
@@ -76,7 +76,7 @@ convert_instr(nir_intrinsic_instr *instr)
nir_src_for_ssa(&new_instr->dest.ssa),
mem_ctx);
} else {
- new_instr->dest = nir_dest_copy(instr->dest, mem_ctx);
+ nir_dest_copy(&new_instr->dest, &instr->dest, mem_ctx);
}
nir_instr_insert_before(&instr->instr, &new_instr->instr);