mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
radv: initialize TC-compat CMASK images with the DCC clear code
0xff is for fast-clears without MSAA. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9415>
This commit is contained in:
parent
a3835964ce
commit
72b58c4a5e
1 changed files with 4 additions and 3 deletions
|
|
@ -6289,9 +6289,10 @@ static void radv_init_color_image_metadata(struct radv_cmd_buffer *cmd_buffer,
|
|||
* CMASK is used (such as when transitioning to a compressed
|
||||
* layout).
|
||||
*/
|
||||
if (radv_image_has_fmask(image) &&
|
||||
radv_layout_can_fast_clear(cmd_buffer->device, image, dst_layout,
|
||||
dst_render_loop, dst_queue_mask)) {
|
||||
if (radv_image_is_tc_compat_cmask(image) ||
|
||||
(radv_image_has_fmask(image) &&
|
||||
radv_layout_can_fast_clear(cmd_buffer->device, image, dst_layout,
|
||||
dst_render_loop, dst_queue_mask))) {
|
||||
value = 0xccccccccu;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue