anv/pass: Store the per-subpass view mask
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
This commit is contained in:
@@ -23,6 +23,8 @@
|
|||||||
|
|
||||||
#include "anv_private.h"
|
#include "anv_private.h"
|
||||||
|
|
||||||
|
#include "util/vk_util.h"
|
||||||
|
|
||||||
static unsigned
|
static unsigned
|
||||||
num_subpass_attachments(const VkSubpassDescription *desc)
|
num_subpass_attachments(const VkSubpassDescription *desc)
|
||||||
{
|
{
|
||||||
@@ -102,6 +104,7 @@ VkResult anv_CreateRenderPass(
|
|||||||
subpass->color_count = desc->colorAttachmentCount;
|
subpass->color_count = desc->colorAttachmentCount;
|
||||||
subpass->attachment_count = num_subpass_attachments(desc);
|
subpass->attachment_count = num_subpass_attachments(desc);
|
||||||
subpass->attachments = subpass_attachments;
|
subpass->attachments = subpass_attachments;
|
||||||
|
subpass->view_mask = 0;
|
||||||
|
|
||||||
if (desc->inputAttachmentCount > 0) {
|
if (desc->inputAttachmentCount > 0) {
|
||||||
subpass->input_attachments = subpass_attachments;
|
subpass->input_attachments = subpass_attachments;
|
||||||
@@ -261,6 +264,22 @@ VkResult anv_CreateRenderPass(
|
|||||||
ANV_PIPE_DEPTH_CACHE_FLUSH_BIT;
|
ANV_PIPE_DEPTH_CACHE_FLUSH_BIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
vk_foreach_struct(ext, pCreateInfo->pNext) {
|
||||||
|
switch (ext->sType) {
|
||||||
|
case VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO_KHX: {
|
||||||
|
VkRenderPassMultiviewCreateInfoKHX *mv = (void *)ext;
|
||||||
|
|
||||||
|
for (uint32_t i = 0; i < mv->subpassCount; i++) {
|
||||||
|
pass->subpasses[i].view_mask = mv->pViewMasks[i];
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
default:
|
||||||
|
anv_debug_ignored_stype(ext->sType);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
*pRenderPass = anv_render_pass_to_handle(pass);
|
*pRenderPass = anv_render_pass_to_handle(pass);
|
||||||
|
|
||||||
return VK_SUCCESS;
|
return VK_SUCCESS;
|
||||||
|
@@ -2169,6 +2169,8 @@ struct anv_subpass {
|
|||||||
|
|
||||||
VkAttachmentReference depth_stencil_attachment;
|
VkAttachmentReference depth_stencil_attachment;
|
||||||
|
|
||||||
|
uint32_t view_mask;
|
||||||
|
|
||||||
/** Subpass has a depth/stencil self-dependency */
|
/** Subpass has a depth/stencil self-dependency */
|
||||||
bool has_ds_self_dep;
|
bool has_ds_self_dep;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user