mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 13:10:10 +01:00
ilo: add support for TEX2/TXB2/TXL2 in fs
They were already supported, just being rejected in the TGSI translator.
This commit is contained in:
parent
f8df73f41c
commit
cde49c71a3
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue