mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 19:30:11 +01:00
asahi/decode: Handle VDM barriers
We emit these now (for transform feedback). Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21675>
This commit is contained in:
parent
2eb1efd181
commit
f083e1807d
1 changed files with 5 additions and 0 deletions
|
|
@ -578,6 +578,11 @@ agxdecode_vdm(const uint8_t *map, uint64_t *link, bool verbose,
|
|||
enum agx_vdm_block_type block_type = (map[3] >> 5);
|
||||
|
||||
switch (block_type) {
|
||||
case AGX_VDM_BLOCK_TYPE_BARRIER: {
|
||||
agx_unpack(agxdecode_dump_stream, map, VDM_BARRIER, cmd);
|
||||
return AGX_VDM_BARRIER_LENGTH;
|
||||
}
|
||||
|
||||
case AGX_VDM_BLOCK_TYPE_PPP_STATE_UPDATE: {
|
||||
agx_unpack(agxdecode_dump_stream, map, PPP_STATE, cmd);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue