Lines Matching refs:spIndex

2291     uint32_t spIndex = 0;  in verify_renderpass_compatibility()  local
2292 for (spIndex = 0; spIndex < primaryRPCI->subpassCount; ++spIndex) { in verify_renderpass_compatibility()
2294 uint32_t primaryColorCount = primaryRPCI->pSubpasses[spIndex].colorAttachmentCount; in verify_renderpass_compatibility()
2295 uint32_t secondaryColorCount = secondaryRPCI->pSubpasses[spIndex].colorAttachmentCount; in verify_renderpass_compatibility()
2298 …if (!attachment_references_compatible(cIdx, primaryRPCI->pSubpasses[spIndex].pColorAttachments, pr… in verify_renderpass_compatibility()
2299 … primaryRPCI->pAttachments, secondaryRPCI->pSubpasses[spIndex].pColorAttachments, in verify_renderpass_compatibility()
2301 …rStr << "color attachments at index " << cIdx << " of subpass index " << spIndex << " are not comp… in verify_renderpass_compatibility()
2304 …} else if (!attachment_references_compatible(cIdx, primaryRPCI->pSubpasses[spIndex].pResolveAttach… in verify_renderpass_compatibility()
2306 … secondaryRPCI->pSubpasses[spIndex].pResolveAttachments, in verify_renderpass_compatibility()
2308 …tr << "resolve attachments at index " << cIdx << " of subpass index " << spIndex << " are not comp… in verify_renderpass_compatibility()
2311 …} else if (!attachment_references_compatible(cIdx, primaryRPCI->pSubpasses[spIndex].pDepthStencilA… in verify_renderpass_compatibility()
2313 … secondaryRPCI->pSubpasses[spIndex].pDepthStencilAttachment, in verify_renderpass_compatibility()
2315 … errorStr << "depth/stencil attachments at index " << cIdx << " of subpass index " << spIndex in verify_renderpass_compatibility()
2321 uint32_t primaryInputCount = primaryRPCI->pSubpasses[spIndex].inputAttachmentCount; in verify_renderpass_compatibility()
2322 uint32_t secondaryInputCount = secondaryRPCI->pSubpasses[spIndex].inputAttachmentCount; in verify_renderpass_compatibility()
2325 …if (!attachment_references_compatible(i, primaryRPCI->pSubpasses[spIndex].pInputAttachments, prima… in verify_renderpass_compatibility()
2326 … primaryRPCI->pAttachments, secondaryRPCI->pSubpasses[spIndex].pInputAttachments, in verify_renderpass_compatibility()
2328 …errorStr << "input attachments at index " << i << " of subpass index " << spIndex << " are not com… in verify_renderpass_compatibility()