Home
last modified time | relevance | path

Searched refs:secondary_attach (Results 1 – 2 of 2) sorted by relevance

/external/vulkan-validation-layers/layers/
Dcore_validation.cpp755 … const RENDER_PASS_STATE *rp2_state, uint32_t primary_attach, uint32_t secondary_attach, in LogInvalidAttachmentMessage() argument
762 …->report_data->FormatHandle(rp2_state->renderPass).c_str(), primary_attach, secondary_attach, msg); in LogInvalidAttachmentMessage()
768 … uint32_t secondary_attach, const char *caller, const char *error_code) { in ValidateAttachmentCompatibility() argument
775 if (secondaryPassCI.attachmentCount <= secondary_attach) { in ValidateAttachmentCompatibility()
776 secondary_attach = VK_ATTACHMENT_UNUSED; in ValidateAttachmentCompatibility()
778 if (primary_attach == VK_ATTACHMENT_UNUSED && secondary_attach == VK_ATTACHMENT_UNUSED) { in ValidateAttachmentCompatibility()
783secondary_attach, "The first is unused while the second is not.", caller, error_code); in ValidateAttachmentCompatibility()
786 if (secondary_attach == VK_ATTACHMENT_UNUSED) { in ValidateAttachmentCompatibility()
788secondary_attach, "The second is unused while the first is not.", caller, error_code); in ValidateAttachmentCompatibility()
791 …sCI.pAttachments[primary_attach].format != secondaryPassCI.pAttachments[secondary_attach].format) { in ValidateAttachmentCompatibility()
[all …]
Dcore_validation.h327 … uint32_t secondary_attach, const char* msg, const char* caller, const char* error_code);
330 … uint32_t secondary_attach, const char* caller, const char* error_code);