diff options
author | Ilia Mirkin <[email protected]> | 2016-05-29 10:49:03 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-06-06 20:48:46 -0400 |
commit | 5189f0243a3dd8698c645bbe762b8a1a3caaf1a9 (patch) | |
tree | 52424a33a94512e4845b9557d6a9e215eab302af /src/compiler/glsl/ir_validate.cpp | |
parent | 13b859de044d0f970fcafd4bbb643a307c6ab4eb (diff) |
mesa: hook up core bits of GL_ARB_shader_group_vote
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/compiler/glsl/ir_validate.cpp')
-rw-r--r-- | src/compiler/glsl/ir_validate.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/compiler/glsl/ir_validate.cpp b/src/compiler/glsl/ir_validate.cpp index 757f17cbf38..126f9bf227a 100644 --- a/src/compiler/glsl/ir_validate.cpp +++ b/src/compiler/glsl/ir_validate.cpp @@ -453,6 +453,14 @@ ir_validate::visit_leave(ir_expression *ir) assert(ir->operands[0]->type->base_type == GLSL_TYPE_SUBROUTINE); assert(ir->type->base_type == GLSL_TYPE_INT); break; + + case ir_unop_vote_any: + case ir_unop_vote_all: + case ir_unop_vote_eq: + assert(ir->type == glsl_type::bool_type); + assert(ir->operands[0]->type == glsl_type::bool_type); + break; + case ir_binop_add: case ir_binop_sub: case ir_binop_mul: |