mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
glsl_to_tgsi: remove handling of XPD opcode in compile_tgsi_instruction()
The opcode is never emitted by the glsl_to_tgsi_visitor, so its special case in compile_tgsi_instruction() was dead code.
This commit is contained in:
parent
8b881ad1c3
commit
7ec7dd4fb6
1 changed files with 0 additions and 8 deletions
|
|
@ -3653,14 +3653,6 @@ compile_tgsi_instruction(struct st_translate *t,
|
|||
src, num_src );
|
||||
break;
|
||||
|
||||
case TGSI_OPCODE_XPD:
|
||||
dst[0] = ureg_writemask(dst[0], TGSI_WRITEMASK_XYZ );
|
||||
ureg_insn( ureg,
|
||||
inst->op,
|
||||
dst, num_dst,
|
||||
src, num_src );
|
||||
break;
|
||||
|
||||
default:
|
||||
ureg_insn( ureg,
|
||||
inst->op,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue