anv/pass: Precompute some subpass usage information
This commit is contained in:
@@ -54,6 +54,17 @@ VkResult anv_CreateRenderPass(
|
|||||||
pass->subpass_count = pCreateInfo->subpassCount;
|
pass->subpass_count = pCreateInfo->subpassCount;
|
||||||
pass->attachments = (void *) pass + attachments_offset;
|
pass->attachments = (void *) pass + attachments_offset;
|
||||||
|
|
||||||
|
pass->subpass_usages =
|
||||||
|
vk_zalloc2(&device->alloc, pAllocator,
|
||||||
|
pass->subpass_count * pass->attachment_count *
|
||||||
|
sizeof(*pass->subpass_usages),
|
||||||
|
8, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
||||||
|
if (pass->subpass_usages == NULL) {
|
||||||
|
vk_free2(&device->alloc, pAllocator, pass);
|
||||||
|
return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
|
||||||
|
}
|
||||||
|
|
||||||
|
enum anv_subpass_usage *usages = pass->subpass_usages;
|
||||||
for (uint32_t i = 0; i < pCreateInfo->attachmentCount; i++) {
|
for (uint32_t i = 0; i < pCreateInfo->attachmentCount; i++) {
|
||||||
struct anv_render_pass_attachment *att = &pass->attachments[i];
|
struct anv_render_pass_attachment *att = &pass->attachments[i];
|
||||||
|
|
||||||
@@ -62,6 +73,8 @@ VkResult anv_CreateRenderPass(
|
|||||||
att->load_op = pCreateInfo->pAttachments[i].loadOp;
|
att->load_op = pCreateInfo->pAttachments[i].loadOp;
|
||||||
att->store_op = pCreateInfo->pAttachments[i].storeOp;
|
att->store_op = pCreateInfo->pAttachments[i].storeOp;
|
||||||
att->stencil_load_op = pCreateInfo->pAttachments[i].stencilLoadOp;
|
att->stencil_load_op = pCreateInfo->pAttachments[i].stencilLoadOp;
|
||||||
|
att->subpass_usage = usages;
|
||||||
|
usages += pass->subpass_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t subpass_attachment_count = 0, *p;
|
uint32_t subpass_attachment_count = 0, *p;
|
||||||
@@ -80,6 +93,7 @@ VkResult anv_CreateRenderPass(
|
|||||||
subpass_attachment_count * sizeof(uint32_t), 8,
|
subpass_attachment_count * sizeof(uint32_t), 8,
|
||||||
VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
||||||
if (pass->subpass_attachments == NULL) {
|
if (pass->subpass_attachments == NULL) {
|
||||||
|
vk_free2(&device->alloc, pAllocator, pass->subpass_usages);
|
||||||
vk_free2(&device->alloc, pAllocator, pass);
|
vk_free2(&device->alloc, pAllocator, pass);
|
||||||
return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
|
return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
|
||||||
}
|
}
|
||||||
@@ -97,8 +111,9 @@ VkResult anv_CreateRenderPass(
|
|||||||
p += desc->inputAttachmentCount;
|
p += desc->inputAttachmentCount;
|
||||||
|
|
||||||
for (uint32_t j = 0; j < desc->inputAttachmentCount; j++) {
|
for (uint32_t j = 0; j < desc->inputAttachmentCount; j++) {
|
||||||
subpass->input_attachments[j]
|
uint32_t a = desc->pInputAttachments[j].attachment;
|
||||||
= desc->pInputAttachments[j].attachment;
|
subpass->input_attachments[j] = a;
|
||||||
|
pass->attachments[a].subpass_usage[i] |= ANV_SUBPASS_USAGE_INPUT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -107,8 +122,9 @@ VkResult anv_CreateRenderPass(
|
|||||||
p += desc->colorAttachmentCount;
|
p += desc->colorAttachmentCount;
|
||||||
|
|
||||||
for (uint32_t j = 0; j < desc->colorAttachmentCount; j++) {
|
for (uint32_t j = 0; j < desc->colorAttachmentCount; j++) {
|
||||||
subpass->color_attachments[j]
|
uint32_t a = desc->pColorAttachments[j].attachment;
|
||||||
= desc->pColorAttachments[j].attachment;
|
subpass->color_attachments[j] = a;
|
||||||
|
pass->attachments[a].subpass_usage[i] |= ANV_SUBPASS_USAGE_DRAW;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -120,14 +136,22 @@ VkResult anv_CreateRenderPass(
|
|||||||
for (uint32_t j = 0; j < desc->colorAttachmentCount; j++) {
|
for (uint32_t j = 0; j < desc->colorAttachmentCount; j++) {
|
||||||
uint32_t a = desc->pResolveAttachments[j].attachment;
|
uint32_t a = desc->pResolveAttachments[j].attachment;
|
||||||
subpass->resolve_attachments[j] = a;
|
subpass->resolve_attachments[j] = a;
|
||||||
if (a != VK_ATTACHMENT_UNUSED)
|
if (a != VK_ATTACHMENT_UNUSED) {
|
||||||
subpass->has_resolve = true;
|
subpass->has_resolve = true;
|
||||||
|
uint32_t color_att = desc->pColorAttachments[j].attachment;
|
||||||
|
pass->attachments[color_att].subpass_usage[i] |=
|
||||||
|
ANV_SUBPASS_USAGE_RESOLVE_SRC;
|
||||||
|
pass->attachments[a].subpass_usage[i] |=
|
||||||
|
ANV_SUBPASS_USAGE_RESOLVE_DST;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (desc->pDepthStencilAttachment) {
|
if (desc->pDepthStencilAttachment) {
|
||||||
subpass->depth_stencil_attachment =
|
uint32_t a = desc->pDepthStencilAttachment->attachment;
|
||||||
desc->pDepthStencilAttachment->attachment;
|
subpass->depth_stencil_attachment = a;
|
||||||
|
if (a != VK_ATTACHMENT_UNUSED)
|
||||||
|
pass->attachments[a].subpass_usage[i] |= ANV_SUBPASS_USAGE_DRAW;
|
||||||
} else {
|
} else {
|
||||||
subpass->depth_stencil_attachment = VK_ATTACHMENT_UNUSED;
|
subpass->depth_stencil_attachment = VK_ATTACHMENT_UNUSED;
|
||||||
}
|
}
|
||||||
@@ -150,6 +174,7 @@ void anv_DestroyRenderPass(
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
vk_free2(&device->alloc, pAllocator, pass->subpass_attachments);
|
vk_free2(&device->alloc, pAllocator, pass->subpass_attachments);
|
||||||
|
vk_free2(&device->alloc, pAllocator, pass->subpass_usages);
|
||||||
vk_free2(&device->alloc, pAllocator, pass);
|
vk_free2(&device->alloc, pAllocator, pass);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1708,18 +1708,29 @@ struct anv_subpass {
|
|||||||
bool has_resolve;
|
bool has_resolve;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum anv_subpass_usage {
|
||||||
|
ANV_SUBPASS_USAGE_DRAW = (1 << 0),
|
||||||
|
ANV_SUBPASS_USAGE_INPUT = (1 << 1),
|
||||||
|
ANV_SUBPASS_USAGE_RESOLVE_SRC = (1 << 2),
|
||||||
|
ANV_SUBPASS_USAGE_RESOLVE_DST = (1 << 3),
|
||||||
|
};
|
||||||
|
|
||||||
struct anv_render_pass_attachment {
|
struct anv_render_pass_attachment {
|
||||||
VkFormat format;
|
VkFormat format;
|
||||||
uint32_t samples;
|
uint32_t samples;
|
||||||
VkAttachmentLoadOp load_op;
|
VkAttachmentLoadOp load_op;
|
||||||
VkAttachmentStoreOp store_op;
|
VkAttachmentStoreOp store_op;
|
||||||
VkAttachmentLoadOp stencil_load_op;
|
VkAttachmentLoadOp stencil_load_op;
|
||||||
|
|
||||||
|
/* An array, indexed by subpass id, of how the attachment will be used. */
|
||||||
|
enum anv_subpass_usage * subpass_usage;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct anv_render_pass {
|
struct anv_render_pass {
|
||||||
uint32_t attachment_count;
|
uint32_t attachment_count;
|
||||||
uint32_t subpass_count;
|
uint32_t subpass_count;
|
||||||
uint32_t * subpass_attachments;
|
uint32_t * subpass_attachments;
|
||||||
|
enum anv_subpass_usage * subpass_usages;
|
||||||
struct anv_render_pass_attachment * attachments;
|
struct anv_render_pass_attachment * attachments;
|
||||||
struct anv_subpass subpasses[0];
|
struct anv_subpass subpasses[0];
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user