mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-24 01:58:16 +02:00
pan/decode: Support INTERLEAVED_64K Z/S target dumps
Block format INTERLEAVED_64K is supported on v10+.
Fixes: 69d067fe1c ("pan/lib: introduce standard_sparse_mapping_granularity")
Acked-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41646>
This commit is contained in:
parent
4441ad835c
commit
6b8d8a70de
1 changed files with 6 additions and 0 deletions
|
|
@ -183,6 +183,9 @@ GENX(pandecode_zs_crc_ext)(struct pandecode_context *ctx, uint64_t gpu_va)
|
|||
#endif
|
||||
case MALI_BLOCK_FORMAT_TILED_U_INTERLEAVED:
|
||||
case MALI_BLOCK_FORMAT_LINEAR:
|
||||
#if PAN_ARCH >= 10
|
||||
case MALI_BLOCK_FORMAT_INTERLEAVED_64K:
|
||||
#endif
|
||||
DUMP_UNPACKED(ctx, ZS_TARGET, zs_crc.zs, "ZS:\n");
|
||||
break;
|
||||
#if PAN_ARCH >= 7
|
||||
|
|
@ -204,6 +207,9 @@ GENX(pandecode_zs_crc_ext)(struct pandecode_context *ctx, uint64_t gpu_va)
|
|||
#endif
|
||||
case MALI_BLOCK_FORMAT_TILED_U_INTERLEAVED:
|
||||
case MALI_BLOCK_FORMAT_LINEAR:
|
||||
#if PAN_ARCH >= 10
|
||||
case MALI_BLOCK_FORMAT_INTERLEAVED_64K:
|
||||
#endif
|
||||
DUMP_UNPACKED(ctx, S_TARGET, zs_crc.s, "S:\n");
|
||||
break;
|
||||
#if PAN_ARCH >= 9
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue