Searched refs:aspectReference (Results 1 – 1 of 1) sorted by relevance
200 const auto &aspectReference = inputAttachmentAspectCreateInfo->pAspectReferences[i]; in ValidateRenderPassPNextChain() local201 ASSERT(aspectReference.subpass < pCreateInfo->subpassCount); in ValidateRenderPassPNextChain()202 const auto &subpassDescription = pCreateInfo->pSubpasses[aspectReference.subpass]; in ValidateRenderPassPNextChain()203 ASSERT(aspectReference.inputAttachmentIndex < subpassDescription.inputAttachmentCount); in ValidateRenderPassPNextChain()204 …const auto &attachmentReference = subpassDescription.pInputAttachments[aspectReference.inputAttach… in ValidateRenderPassPNextChain()215 ASSERT(!(aspectReference.aspectMask & VK_IMAGE_ASPECT_COLOR_BIT) || (!isDepth && !isStencil)); in ValidateRenderPassPNextChain()216 ASSERT(!(aspectReference.aspectMask & VK_IMAGE_ASPECT_DEPTH_BIT) || isDepth); in ValidateRenderPassPNextChain()217 ASSERT(!(aspectReference.aspectMask & VK_IMAGE_ASPECT_STENCIL_BIT) || isStencil); in ValidateRenderPassPNextChain()