diff options
author | Nicolai Hähnle <[email protected]> | 2017-04-19 10:47:08 +0200 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-04-28 11:33:59 +0200 |
commit | ce55afc4d6d3d97440856cad117d02c20fb952a9 (patch) | |
tree | 5ca91dbc2dde724c262af0679933bca9a0fd31e8 /src/mesa/state_tracker | |
parent | 0aef96e00cfd0ba5cb584fcb3c1a66e919d2e5a8 (diff) |
glsl: remove the shader_group_vote and shader_ballot expression ops
They are now no longer used.
Diffstat (limited to 'src/mesa/state_tracker')
-rw-r--r-- | src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp index 4d1338e418e..83dadabf65c 100644 --- a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp +++ b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp @@ -2361,24 +2361,6 @@ glsl_to_tgsi_visitor::visit_expression(ir_expression* ir, st_src_reg *op) break; } - case ir_unop_vote_any: - emit_asm(ir, TGSI_OPCODE_VOTE_ANY, result_dst, op[0]); - break; - case ir_unop_vote_all: - emit_asm(ir, TGSI_OPCODE_VOTE_ALL, result_dst, op[0]); - break; - case ir_unop_vote_eq: - emit_asm(ir, TGSI_OPCODE_VOTE_EQ, result_dst, op[0]); - break; - case ir_unop_ballot: - emit_asm(ir, TGSI_OPCODE_BALLOT, result_dst, op[0]); - break; - case ir_unop_read_first_invocation: - emit_asm(ir, TGSI_OPCODE_READ_FIRST, result_dst, op[0]); - break; - case ir_binop_read_invocation: - emit_asm(ir, TGSI_OPCODE_READ_INVOC, result_dst, op[0], op[1]); - break; case ir_unop_u2i64: case ir_unop_u2u64: case ir_unop_b2i64: { |