diff options
author | Abdiel Janulgue <[email protected]> | 2014-06-20 11:56:48 -0700 |
---|---|---|
committer | Abdiel Janulgue <[email protected]> | 2014-08-31 21:04:08 +0300 |
commit | a5f02b6696c3ce9ed87e017a537a37d09e288702 (patch) | |
tree | 61c44d2e5e150a958dafd2f8386d3f80912a7cda /src/glsl/ir_validate.cpp | |
parent | f3401451070f1b38cc8ed17f486923f03eaeb828 (diff) |
glsl: Add ir_unop_saturate
Signed-off-by: Abdiel Janulgue <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glsl/ir_validate.cpp')
-rw-r--r-- | src/glsl/ir_validate.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/ir_validate.cpp b/src/glsl/ir_validate.cpp index 5b20677825c..97a581dc2d5 100644 --- a/src/glsl/ir_validate.cpp +++ b/src/glsl/ir_validate.cpp @@ -241,6 +241,7 @@ ir_validate::visit_leave(ir_expression *ir) case ir_unop_log: case ir_unop_exp2: case ir_unop_log2: + case ir_unop_saturate: assert(ir->operands[0]->type->base_type == GLSL_TYPE_FLOAT); assert(ir->type == ir->operands[0]->type); break; |