Home | History | Annotate | Download | only in layers

Lines Matching refs:pSubpasses

2128         uint32_t primaryColorCount = primaryRPCI->pSubpasses[spIndex].colorAttachmentCount;
2129 uint32_t secondaryColorCount = secondaryRPCI->pSubpasses[spIndex].colorAttachmentCount;
2132 if (!attachment_references_compatible(cIdx, primaryRPCI->pSubpasses[spIndex].pColorAttachments, primaryColorCount,
2133 primaryRPCI->pAttachments, secondaryRPCI->pSubpasses[spIndex].pColorAttachments,
2139 } else if (!attachment_references_compatible(cIdx, primaryRPCI->pSubpasses[spIndex].pResolveAttachments,
2141 secondaryRPCI->pSubpasses[spIndex].pResolveAttachments,
2150 if (!attachment_references_compatible(0, primaryRPCI->pSubpasses[spIndex].pDepthStencilAttachment,
2152 secondaryRPCI->pSubpasses[spIndex].pDepthStencilAttachment,
2160 uint32_t primaryInputCount = primaryRPCI->pSubpasses[spIndex].inputAttachmentCount;
2161 uint32_t secondaryInputCount = secondaryRPCI->pSubpasses[spIndex].inputAttachmentCount;
2164 if (!attachment_references_compatible(i, primaryRPCI->pSubpasses[spIndex].pInputAttachments, primaryColorCount,
2165 primaryRPCI->pAttachments, secondaryRPCI->pSubpasses[spIndex].pInputAttachments,
2695 const VkSubpassDescription *subpass_desc = &render_pass_info->pSubpasses[pCB->activeSubpass];
7285 const VkSubpassDescription *pSD = &pRPCI->pSubpasses[pCB->activeSubpass];
8265 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[index];
8281 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[index];
8374 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[i];
8409 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[i];
8430 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[i];
8461 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[i];
8615 if (pCreateInfo->pSubpasses) {
8616 localRPCI->pSubpasses = new VkSubpassDescription[localRPCI->subpassCount];
8617 memcpy((void *)localRPCI->pSubpasses, pCreateInfo->pSubpasses, localRPCI->subpassCount * sizeof(VkSubpassDescription));
8620 VkSubpassDescription *subpass = (VkSubpassDescription *)&localRPCI->pSubpasses[i];
8675 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[i];
8759 if (pRenderPassInfo->pSubpasses) {
8763 if (pRenderPassInfo->pSubpasses[i].pInputAttachments) {
8764 delete[] pRenderPassInfo->pSubpasses[i].pInputAttachments;
8765 } else if (pRenderPassInfo->pSubpasses[i].pColorAttachments) {
8766 delete[] pRenderPassInfo->pSubpasses[i].pColorAttachments;
8767 } else if (pRenderPassInfo->pSubpasses[i].pResolveAttachments) {
8768 delete[] pRenderPassInfo->pSubpasses[i].pResolveAttachments;
8769 } else if (pRenderPassInfo->pSubpasses[i].pPreserveAttachments) {
8770 delete[] pRenderPassInfo->pSubpasses[i].pPreserveAttachments;
8773 delete[] pRenderPassInfo->pSubpasses;
8836 const VkSubpassDescription &subpass = renderPass->pCreateInfo->pSubpasses[subpass_index];
9079 const VkSubpassDescription &primary_desc = primaryPass->pCreateInfo->pSubpasses[subpass];
9080 const VkSubpassDescription &secondary_desc = secondaryPass->pCreateInfo->pSubpasses[subpass];