mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-18 15:08:24 +02:00
vc4: Also dump VC4_PACKET_LOAD_TILE_BUFFER_GENERAL.
This commit is contained in:
parent
5458ac01ae
commit
3fd4c80b32
1 changed files with 14 additions and 2 deletions
|
|
@ -73,7 +73,7 @@ dump_VC4_PACKET_STORE_FULL_RES_TILE_BUFFER(void *cl, uint32_t offset, uint32_t h
|
|||
}
|
||||
|
||||
static void
|
||||
dump_VC4_PACKET_STORE_TILE_BUFFER_GENERAL(void *cl, uint32_t offset, uint32_t hw_offset)
|
||||
dump_loadstore_general(void *cl, uint32_t offset, uint32_t hw_offset)
|
||||
{
|
||||
uint8_t *bytes = cl + offset;
|
||||
uint32_t *addr = cl + offset + 2;
|
||||
|
|
@ -150,6 +150,18 @@ dump_VC4_PACKET_STORE_TILE_BUFFER_GENERAL(void *cl, uint32_t offset, uint32_t hw
|
|||
(*addr & (1 << 3)) ? " EOF" : "");
|
||||
}
|
||||
|
||||
static void
|
||||
dump_VC4_PACKET_STORE_TILE_BUFFER_GENERAL(void *cl, uint32_t offset, uint32_t hw_offset)
|
||||
{
|
||||
dump_loadstore_general(cl, offset, hw_offset);
|
||||
}
|
||||
|
||||
static void
|
||||
dump_VC4_PACKET_LOAD_TILE_BUFFER_GENERAL(void *cl, uint32_t offset, uint32_t hw_offset)
|
||||
{
|
||||
dump_loadstore_general(cl, offset, hw_offset);
|
||||
}
|
||||
|
||||
static void
|
||||
dump_VC4_PACKET_FLAT_SHADE_FLAGS(void *cl, uint32_t offset, uint32_t hw_offset)
|
||||
{
|
||||
|
|
@ -342,7 +354,7 @@ static const struct packet_info {
|
|||
PACKET_DUMP(VC4_PACKET_STORE_FULL_RES_TILE_BUFFER),
|
||||
PACKET_DUMP(VC4_PACKET_LOAD_FULL_RES_TILE_BUFFER),
|
||||
PACKET_DUMP(VC4_PACKET_STORE_TILE_BUFFER_GENERAL),
|
||||
PACKET(VC4_PACKET_LOAD_TILE_BUFFER_GENERAL),
|
||||
PACKET_DUMP(VC4_PACKET_LOAD_TILE_BUFFER_GENERAL),
|
||||
|
||||
PACKET(VC4_PACKET_GL_INDEXED_PRIMITIVE),
|
||||
PACKET(VC4_PACKET_GL_ARRAY_PRIMITIVE),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue