mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
freedreno/fdl: Log mutability when dumping layout
Signed-off-by: Danylo Piliaiev <dpiliaiev@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33514>
This commit is contained in:
parent
bdf0f61d4a
commit
4c918603e0
1 changed files with 2 additions and 2 deletions
|
|
@ -48,13 +48,13 @@ fdl_dump_layout(struct fdl_layout *layout)
|
|||
fprintf(
|
||||
stderr,
|
||||
"%s: %ux%ux%u@%ux%u:\t%2u: stride=%4u, size=%6u,%6u, "
|
||||
"aligned_height=%3u, offset=0x%x,0x%x, layersz %5" PRIu64 ",%5" PRIu64 " %s\n",
|
||||
"aligned_height=%3u, offset=0x%x,0x%x, layersz %5" PRIu64 ",%5" PRIu64 " %s %s\n",
|
||||
util_format_name(layout->format), u_minify(layout->width0, level),
|
||||
u_minify(layout->height0, level), u_minify(layout->depth0, level),
|
||||
layout->cpp, layout->nr_samples, level, fdl_pitch(layout, level),
|
||||
slice->size0, ubwc_slice->size0,
|
||||
slice->size0 / fdl_pitch(layout, level), slice->offset,
|
||||
ubwc_slice->offset, layout->layer_size, layout->ubwc_layer_size,
|
||||
fdl_tile_mode_desc(layout, level));
|
||||
fdl_tile_mode_desc(layout, level), layout->is_mutable ? "mutable" : "");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue