aboutsummaryrefslogtreecommitdiffstats
path: root/src/glsl/lower_vec_index_to_cond_assign.cpp
diff options
context:
space:
mode:
authorJordan Justen <[email protected]>2015-10-12 20:22:14 -0700
committerJordan Justen <[email protected]>2015-10-14 13:16:34 -0700
commitab04adcf63cb4553c66b703645c2991340b5637d (patch)
treeb212e9119eeb1c3cf86fee0f4c787a87b5023a35 /src/glsl/lower_vec_index_to_cond_assign.cpp
parent0d1eef536bc744f5c4dcdf854ad6adfdfe4f4dcb (diff)
glsl: Support uint index in do_vec_index_to_cond_assign
The ES31-CTS.compute_shader.pipeline-compute-chain test case generates an unsigned index by using gl_LocalInvocationID.x and gl_LocalInvocationID.y as array indices. Signed-off-by: Jordan Justen <[email protected]> Reviewed-by: Tapani Pälli <[email protected]>
Diffstat (limited to 'src/glsl/lower_vec_index_to_cond_assign.cpp')
-rw-r--r--src/glsl/lower_vec_index_to_cond_assign.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/glsl/lower_vec_index_to_cond_assign.cpp b/src/glsl/lower_vec_index_to_cond_assign.cpp
index 0c3394a504b..b6238825f8a 100644
--- a/src/glsl/lower_vec_index_to_cond_assign.cpp
+++ b/src/glsl/lower_vec_index_to_cond_assign.cpp
@@ -88,7 +88,9 @@ ir_vec_index_to_cond_assign_visitor::convert_vec_index_to_cond_assign(void *mem_
exec_list list;
/* Store the index to a temporary to avoid reusing its tree. */
- index = new(base_ir) ir_variable(glsl_type::int_type,
+ assert(orig_index->type == glsl_type::int_type ||
+ orig_index->type == glsl_type::uint_type);
+ index = new(base_ir) ir_variable(orig_index->type,
"vec_index_tmp_i",
ir_var_temporary);
list.push_tail(index);