mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
asahi: Decode Interpolation packets
These have been known, just were missed. Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17198>
This commit is contained in:
parent
c67169d218
commit
4b21db4111
1 changed files with 3 additions and 0 deletions
|
|
@ -406,6 +406,9 @@ agxdecode_record(uint64_t va, size_t size, bool verbose)
|
|||
if (tag == 0x00000C00) {
|
||||
assert(size == AGX_VIEWPORT_LENGTH);
|
||||
DUMP_CL(VIEWPORT, map, "Viewport");
|
||||
} else if (tag == 0x100C0000) {
|
||||
assert(size == AGX_INTERPOLATION_LENGTH);
|
||||
DUMP_CL(INTERPOLATION, map, "Interpolation");
|
||||
} else if (tag == 0x0C020000) {
|
||||
assert(size == AGX_LINKAGE_LENGTH);
|
||||
DUMP_CL(LINKAGE, map, "Linkage");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue