summaryrefslogtreecommitdiffstats
path: root/src/compiler/nir
diff options
context:
space:
mode:
authorRob Clark <robdclark@gmail.com>2016-09-08 15:49:49 -0400
committerRob Clark <robdclark@gmail.com>2016-09-14 13:45:32 -0400
commitbff90aedf1d06c7e746b2d56319b19a624594feb (patch)
treec4d1ffe2509094d0dbf72d0be954337e7c09ace9 /src/compiler/nir
parent1a8424cebaeaf46a01000624a46764f3e84dad85 (diff)
downloadexternal_mesa3d-bff90aedf1d06c7e746b2d56319b19a624594feb.zip
external_mesa3d-bff90aedf1d06c7e746b2d56319b19a624594feb.tar.gz
external_mesa3d-bff90aedf1d06c7e746b2d56319b19a624594feb.tar.bz2
nir/lower_tex: fix typo with sample_dim
Numeric 2 is actually GLSL_SAMPLER_DIM_3D, which I don't think is what was intended. Signed-off-by: Rob Clark <robdclark@gmail.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Diffstat (limited to 'src/compiler/nir')
-rw-r--r--src/compiler/nir/nir_lower_tex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_lower_tex.c b/src/compiler/nir/nir_lower_tex.c
index a405758..0efd443 100644
--- a/src/compiler/nir/nir_lower_tex.c
+++ b/src/compiler/nir/nir_lower_tex.c
@@ -211,7 +211,7 @@ sample_plane(nir_builder *b, nir_tex_instr *tex, int plane)
plane_tex->src[1].src = nir_src_for_ssa(nir_imm_int(b, plane));
plane_tex->src[1].src_type = nir_tex_src_plane;
plane_tex->op = nir_texop_tex;
- plane_tex->sampler_dim = 2;
+ plane_tex->sampler_dim = GLSL_SAMPLER_DIM_2D;
plane_tex->dest_type = nir_type_float;
plane_tex->coord_components = 2;