diff options
Diffstat (limited to 'src/glsl/ir.h')
-rw-r--r-- | src/glsl/ir.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/glsl/ir.h b/src/glsl/ir.h index 691732b5627..2637b40e28b 100644 --- a/src/glsl/ir.h +++ b/src/glsl/ir.h @@ -1197,6 +1197,18 @@ enum ir_expression_operation { ir_triop_lrp, /** + * \name Conditional Select + * + * A vector conditional select instruction (like ?:, but operating per- + * component on vectors). + * + * \see lower_instructions_visitor::ldexp_to_arith + */ + /*@{*/ + ir_triop_csel, + /*@}*/ + + /** * \name Second half of a lowered bitfieldInsert() operation. * * \see lower_instructions::bitfield_insert_to_bfm_bfi |