Lines Matching refs:secondaryAttach

9728 …     VkRenderPass primaryPass, uint32_t primaryAttach, uint32_t secondaryAttach, const char *msg) {  in logInvalidAttachmentMessage()  argument
9734 …econdaryBuffer, (uint64_t)(secondaryPass), (uint64_t)(primaryPass), primaryAttach, secondaryAttach, in logInvalidAttachmentMessage()
9740 uint32_t secondaryAttach, bool is_multi) { in validateAttachmentCompatibility() argument
9747 if (secondary_data->second->pCreateInfo->attachmentCount <= secondaryAttach) { in validateAttachmentCompatibility()
9748 secondaryAttach = VK_ATTACHMENT_UNUSED; in validateAttachmentCompatibility()
9750 if (primaryAttach == VK_ATTACHMENT_UNUSED && secondaryAttach == VK_ATTACHMENT_UNUSED) { in validateAttachmentCompatibility()
9755secondaryAttach, "The first is unused while the second is not."); in validateAttachmentCompatibility()
9758 if (secondaryAttach == VK_ATTACHMENT_UNUSED) { in validateAttachmentCompatibility()
9760secondaryAttach, "The second is unused while the first is not."); in validateAttachmentCompatibility()
9764 secondary_data->second->pCreateInfo->pAttachments[secondaryAttach].format) { in validateAttachmentCompatibility()
9766 secondaryAttach, "They have different formats."); in validateAttachmentCompatibility()
9769 secondary_data->second->pCreateInfo->pAttachments[secondaryAttach].samples) { in validateAttachmentCompatibility()
9771 secondaryAttach, "They have different samples."); in validateAttachmentCompatibility()
9775 secondary_data->second->pCreateInfo->pAttachments[secondaryAttach].flags) { in validateAttachmentCompatibility()
9777 secondaryAttach, "They have different flags."); in validateAttachmentCompatibility()