summaryrefslogtreecommitdiffstats
path: root/src/glsl/ir_constant_expression.cpp
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2013-08-19 10:45:46 -0700
committerMatt Turner <mattst88@gmail.com>2013-09-09 15:01:08 -0700
commit7aaa38728f93bfb69573e0d866f24e8cb41836f0 (patch)
treef4de2a2d80ac24087c37dea60b37fe41d9745644 /src/glsl/ir_constant_expression.cpp
parent60850b7b9fbb9827d6841dbd4a4cd9b1e3554d45 (diff)
downloadexternal_mesa3d-7aaa38728f93bfb69573e0d866f24e8cb41836f0.zip
external_mesa3d-7aaa38728f93bfb69573e0d866f24e8cb41836f0.tar.gz
external_mesa3d-7aaa38728f93bfb69573e0d866f24e8cb41836f0.tar.bz2
glsl: Add conditional-select IR.
It's a ?: that operates per-component on vectors. Will be used in upcoming lowering pass for ldexp and the implementation of frexp. csel(selector, a, b): per-component result = selector ? a : b Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'src/glsl/ir_constant_expression.cpp')
-rw-r--r--src/glsl/ir_constant_expression.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/glsl/ir_constant_expression.cpp b/src/glsl/ir_constant_expression.cpp
index ec338a8..a67470b 100644
--- a/src/glsl/ir_constant_expression.cpp
+++ b/src/glsl/ir_constant_expression.cpp
@@ -395,6 +395,7 @@ ir_expression::constant_expression_value(struct hash_table *variable_context)
case ir_binop_lshift:
case ir_binop_rshift:
case ir_binop_vector_extract:
+ case ir_triop_csel:
case ir_triop_bitfield_extract:
break;
@@ -1399,6 +1400,13 @@ ir_expression::constant_expression_value(struct hash_table *variable_context)
break;
}
+ case ir_triop_csel:
+ for (unsigned c = 0; c < components; c++) {
+ data.u[c] = op[0]->value.b[c] ? op[1]->value.u[c]
+ : op[2]->value.u[c];
+ }
+ break;
+
case ir_triop_vector_insert: {
const unsigned idx = op[2]->value.u[0];