[Mesa-dev] [PATCH] anv/pass: Store the depth-stencil attachment's last subpass index
Nanley Chery
nanleychery at gmail.com
Thu Feb 2 01:21:07 UTC 2017
Commit 968ffd6c868af7226e8f889573eef709888151cb stored the last subpass
index of all the attachments but that of the depth-stencil attachment.
This could cause depth buffers used in multiple subpasses not to be in
the requested final layout. Fix this error.
Cc: "17.0" <mesa-stable at lists.freedesktop.org>
Signed-off-by: Nanley Chery <nanley.g.chery at intel.com>
---
src/intel/vulkan/anv_pass.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/intel/vulkan/anv_pass.c b/src/intel/vulkan/anv_pass.c
index 5df6330c6a..2df18260d3 100644
--- a/src/intel/vulkan/anv_pass.c
+++ b/src/intel/vulkan/anv_pass.c
@@ -172,6 +172,7 @@ VkResult anv_CreateRenderPass(
pass->attachments[a].usage |=
VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT;
pass->attachments[a].subpass_usage[i] |= ANV_SUBPASS_USAGE_DRAW;
+ pass->attachments[a].last_subpass_idx = i;
}
} else {
subpass->depth_stencil_attachment = VK_ATTACHMENT_UNUSED;
--
2.11.0
More information about the mesa-dev
mailing list