diff options
author | Jason Ekstrand <[email protected]> | 2014-12-05 11:03:06 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-01-15 07:20:21 -0800 |
commit | cd4b995254fe29bae9ab5a9563cc615274d361ed (patch) | |
tree | 4969c948b76d97529963ecac138a8d6d95e07d21 /src/glsl/nir/nir_opt_cse.c | |
parent | d6fe35a418426c811398a32b9aeacf7410f6352d (diff) |
nir: Make texture instruction names more consistent
This commit renames nir_instr_as_texture to nir_instr_as_tex and renames
nir_instr_type_texture to nir_instr_type_tex to be consistent with
nir_tex_instr.
Reviewed-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src/glsl/nir/nir_opt_cse.c')
-rw-r--r-- | src/glsl/nir/nir_opt_cse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glsl/nir/nir_opt_cse.c b/src/glsl/nir/nir_opt_cse.c index a27d412a5f8..2447fe9cfc0 100644 --- a/src/glsl/nir/nir_opt_cse.c +++ b/src/glsl/nir/nir_opt_cse.c @@ -87,7 +87,7 @@ nir_instrs_equal(nir_instr *instr1, nir_instr *instr2) } return true; } - case nir_instr_type_texture: + case nir_instr_type_tex: return false; case nir_instr_type_load_const: { nir_load_const_instr *load1 = nir_instr_as_load_const(instr1); @@ -152,7 +152,7 @@ nir_instr_can_cse(nir_instr *instr) case nir_instr_type_phi: return nir_foreach_dest(instr, dest_is_ssa, NULL) && nir_foreach_src(instr, src_is_ssa, NULL); - case nir_instr_type_texture: + case nir_instr_type_tex: return false; /* TODO */ case nir_instr_type_intrinsic: case nir_instr_type_call: |