diff options
author | Samuel Pitoiset <[email protected]> | 2018-04-27 10:53:13 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2018-05-01 22:18:03 +0200 |
commit | d8db5986cee83078e46895d695d698db87507019 (patch) | |
tree | 06ebe5acc25f1f4fa20ff4152a9cbf50119d03ee /src/amd/vulkan | |
parent | e66f64c2855604c6148e8e865a65411ff0c3ba02 (diff) |
radv: compute the number of subpass attachments correctly
Only count color attachments twice if resolves are used, also
account for the depth stencil attachment if present.
Cc: 18.0 18.1 <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Signed-off-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/amd/vulkan')
-rw-r--r-- | src/amd/vulkan/radv_pass.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/vulkan/radv_pass.c b/src/amd/vulkan/radv_pass.c index d059af54f9b..a7d54d7d61b 100644 --- a/src/amd/vulkan/radv_pass.c +++ b/src/amd/vulkan/radv_pass.c @@ -87,8 +87,8 @@ VkResult radv_CreateRenderPass( subpass_attachment_count += desc->inputAttachmentCount + desc->colorAttachmentCount + - /* Count colorAttachmentCount again for resolve_attachments */ - desc->colorAttachmentCount; + (desc->pResolveAttachments ? desc->colorAttachmentCount : 0) + + (desc->pDepthStencilAttachment != NULL); } if (subpass_attachment_count) { |