mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-24 08:10:22 +01:00
radv: Deal with unused attachments in mip flush
Fixes:4cce4d22a7("radv: Fix a hang on CB change by adding flushes.") Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7813> (cherry picked from commitaed8d30b50)
This commit is contained in:
parent
db68b97f25
commit
ded8b21e2a
2 changed files with 4 additions and 1 deletions
|
|
@ -1444,7 +1444,7 @@
|
|||
"description": "radv: Deal with unused attachments in mip flush",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"master_sha": null,
|
||||
"because_sha": "4cce4d22a72bf84459ee95223cc7d1c6542617fb"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -2257,6 +2257,9 @@ radv_emit_fb_mip_change_flush(struct radv_cmd_buffer *cmd_buffer)
|
|||
|
||||
for (int i = 0; i < subpass->color_count; ++i) {
|
||||
int idx = subpass->color_attachments[i].attachment;
|
||||
if (idx == VK_ATTACHMENT_UNUSED)
|
||||
continue;
|
||||
|
||||
struct radv_image_view *iview = cmd_buffer->state.attachments[idx].iview;
|
||||
|
||||
if ((radv_image_has_CB_metadata(iview->image) ||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue