diff options
-rw-r--r-- | src/gallium/drivers/ilo/shader/toy_tgsi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/ilo/shader/toy_tgsi.c b/src/gallium/drivers/ilo/shader/toy_tgsi.c index f697d1d2ae5..045d279ef8c 100644 --- a/src/gallium/drivers/ilo/shader/toy_tgsi.c +++ b/src/gallium/drivers/ilo/shader/toy_tgsi.c @@ -1619,9 +1619,9 @@ static const toy_tgsi_translate soa_translate_table[TGSI_OPCODE_LAST] = { [TGSI_OPCODE_ATOMUMAX] = soa_unsupported, [TGSI_OPCODE_ATOMIMIN] = soa_unsupported, [TGSI_OPCODE_ATOMIMAX] = soa_unsupported, - [TGSI_OPCODE_TEX2] = soa_unsupported, - [TGSI_OPCODE_TXB2] = soa_unsupported, - [TGSI_OPCODE_TXL2] = soa_unsupported, + [TGSI_OPCODE_TEX2] = soa_passthrough, + [TGSI_OPCODE_TXB2] = soa_passthrough, + [TGSI_OPCODE_TXL2] = soa_passthrough, }; static bool |