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/mesa/drivers | |
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/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp b/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp index 3d2e61963d8..5eac8d4fff3 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_channel_expressions.cpp @@ -433,6 +433,11 @@ ir_channel_expressions_visitor::visit_leave(ir_assignment *ir) case ir_unop_frexp_sig: case ir_unop_frexp_exp: unreachable("should have been lowered by lower_instructions"); + + case ir_unop_vote_any: + case ir_unop_vote_all: + case ir_unop_vote_eq: + unreachable("unsupported"); } ir->remove(); |