• Home
  • Raw
  • Download

Lines Matching refs:pSubpasses

1920     auto subpass = rpci->pSubpasses[subpass_index];  in validate_fs_outputs_against_render_pass()
2361 uint32_t primaryColorCount = primaryRPCI->pSubpasses[spIndex].colorAttachmentCount; in verify_renderpass_compatibility()
2362 uint32_t secondaryColorCount = secondaryRPCI->pSubpasses[spIndex].colorAttachmentCount; in verify_renderpass_compatibility()
2365 …if (!attachment_references_compatible(cIdx, primaryRPCI->pSubpasses[spIndex].pColorAttachments, pr… in verify_renderpass_compatibility()
2366 … primaryRPCI->pAttachments, secondaryRPCI->pSubpasses[spIndex].pColorAttachments, in verify_renderpass_compatibility()
2372 …} else if (!attachment_references_compatible(cIdx, primaryRPCI->pSubpasses[spIndex].pResolveAttach… in verify_renderpass_compatibility()
2374 … secondaryRPCI->pSubpasses[spIndex].pResolveAttachments, in verify_renderpass_compatibility()
2383 … if (!attachment_references_compatible(0, primaryRPCI->pSubpasses[spIndex].pDepthStencilAttachment, in verify_renderpass_compatibility()
2385 … secondaryRPCI->pSubpasses[spIndex].pDepthStencilAttachment, in verify_renderpass_compatibility()
2393 uint32_t primaryInputCount = primaryRPCI->pSubpasses[spIndex].inputAttachmentCount; in verify_renderpass_compatibility()
2394 uint32_t secondaryInputCount = secondaryRPCI->pSubpasses[spIndex].inputAttachmentCount; in verify_renderpass_compatibility()
2397 …if (!attachment_references_compatible(i, primaryRPCI->pSubpasses[spIndex].pInputAttachments, prima… in verify_renderpass_compatibility()
2398 … primaryRPCI->pAttachments, secondaryRPCI->pSubpasses[spIndex].pInputAttachments, in verify_renderpass_compatibility()
2823 auto input_attachments = rpci->pSubpasses[subpass].pInputAttachments; in validate_pipeline_shader_stage()
2824 … auto index = (input_attachments && use.first < rpci->pSubpasses[subpass].inputAttachmentCount) ? in validate_pipeline_shader_stage()
3061 … const VkSubpassDescription *subpass_desc = &render_pass_info->pSubpasses[pCB->activeSubpass]; in validatePipelineDrawtimeState()
3451 …auto subpass_desc = renderPass ? &renderPass->createInfo.pSubpasses[pPipeline->graphicsPipelineCI.… in verifyPipelineCreateState()
8504 const VkSubpassDescription *pSD = &pRPCI->pSubpasses[pCB->activeSubpass]; in CmdClearAttachments()
9573 skip_call |= MatchUsage(dev_data, rpci->pSubpasses[subpass].inputAttachmentCount, in ValidateFramebufferCreateInfo()
9574 … rpci->pSubpasses[subpass].pInputAttachments, pCreateInfo, VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT); in ValidateFramebufferCreateInfo()
9576 skip_call |= MatchUsage(dev_data, rpci->pSubpasses[subpass].colorAttachmentCount, in ValidateFramebufferCreateInfo()
9577 … rpci->pSubpasses[subpass].pColorAttachments, pCreateInfo, VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT); in ValidateFramebufferCreateInfo()
9579 if (rpci->pSubpasses[subpass].pDepthStencilAttachment != nullptr) { in ValidateFramebufferCreateInfo()
9580 …skip_call |= MatchUsage(dev_data, 1, rpci->pSubpasses[subpass].pDepthStencilAttachment, pCreateInf… in ValidateFramebufferCreateInfo()
9711 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[index]; in CheckPreserved()
9727 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[index]; in CheckPreserved()
9821 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[i]; in ValidateDependencies()
9859 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[i]; in ValidateDependencies()
9884 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[i]; in ValidateDependencies()
9917 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[i]; in ValidateLayouts()
10108 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[i]; in ValidateRenderpassAttachmentUsage()
10224 const VkSubpassDescription &subpass = pCreateInfo->pSubpasses[i]; in CreateRenderPass()
10317 auto const &subpass = renderPass->createInfo.pSubpasses[subpass_index]; in TransitionSubpassLayouts()
10622 const VkSubpassDescription &primary_desc = primaryPassCI->pSubpasses[subpass]; in validateSubpassCompatibility()
10623 const VkSubpassDescription &secondary_desc = secondaryPassCI->pSubpasses[subpass]; in validateSubpassCompatibility()