mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-25 14:30:22 +01:00
agx: fix block_image_store indirect ts
Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30633>
This commit is contained in:
parent
7de5d51f16
commit
290820e8b0
1 changed files with 1 additions and 1 deletions
|
|
@ -961,7 +961,7 @@ agx_pack_instr(struct util_dynarray *emission, struct util_dynarray *fixups,
|
|||
((C & BITFIELD_MASK(6)) << 16) | (Ct ? (1 << 22) : 0) |
|
||||
(unk1 ? (1u << 31) : 0);
|
||||
|
||||
uint32_t word1 = (T & BITFIELD_MASK(6)) | (Tt << 2) |
|
||||
uint32_t word1 = (T & BITFIELD_MASK(6)) | (Tt << 6) |
|
||||
((I->dim & BITFIELD_MASK(3)) << 8) | (9 << 11) |
|
||||
(Cs ? (1 << 15) : 0) |
|
||||
((I->dim & BITFIELD_BIT(3)) ? (1u << 23) : 0) |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue