Lines Matching refs:rCI
650 std::size_t calculateRenderPassHash (const VkRenderPassCreateInfo& rCI, const std::map<deUint64, st… in calculateRenderPassHash() argument
654 hashPNextChain(seed, rCI.pNext, objectHashes); in calculateRenderPassHash()
656 hash_combine(seed, deUint32(rCI.flags)); in calculateRenderPassHash()
658 if (rCI.pAttachments != DE_NULL) in calculateRenderPassHash()
659 for (deUint32 i = 0; i < rCI.attachmentCount; ++i) in calculateRenderPassHash()
660 …rCI.pAttachments[i].flags), deUint32(rCI.pAttachments[i].format), deUint32(rCI.pAttachments[i].sam… in calculateRenderPassHash()
662 if (rCI.pSubpasses != DE_NULL) in calculateRenderPassHash()
664 for (deUint32 i = 0; i < rCI.subpassCount; ++i) in calculateRenderPassHash()
666 …hash_combine(seed, deUint32(rCI.pSubpasses[i].flags), deUint32(rCI.pSubpasses[i].pipelineBindPoint… in calculateRenderPassHash()
667 if (rCI.pSubpasses[i].pInputAttachments != DE_NULL) in calculateRenderPassHash()
668 for (deUint32 j = 0; j < rCI.pSubpasses[i].inputAttachmentCount; ++j) in calculateRenderPassHash()
669 …hash_combine(seed, rCI.pSubpasses[i].pInputAttachments[j].attachment, deUint32(rCI.pSubpasses[i].p… in calculateRenderPassHash()
670 if (rCI.pSubpasses[i].pColorAttachments != DE_NULL) in calculateRenderPassHash()
671 for (deUint32 j = 0; j < rCI.pSubpasses[i].colorAttachmentCount; ++j) in calculateRenderPassHash()
672 …hash_combine(seed, rCI.pSubpasses[i].pColorAttachments[j].attachment, deUint32(rCI.pSubpasses[i].p… in calculateRenderPassHash()
673 if (rCI.pSubpasses[i].pResolveAttachments != DE_NULL) in calculateRenderPassHash()
674 for (deUint32 j = 0; j < rCI.pSubpasses[i].colorAttachmentCount; ++j) in calculateRenderPassHash()
675 …hash_combine(seed, rCI.pSubpasses[i].pResolveAttachments[j].attachment, deUint32(rCI.pSubpasses[i]… in calculateRenderPassHash()
676 if (rCI.pSubpasses[i].pDepthStencilAttachment != DE_NULL) in calculateRenderPassHash()
677 …hash_combine(seed, rCI.pSubpasses[i].pDepthStencilAttachment->attachment, deUint32(rCI.pSubpasses[… in calculateRenderPassHash()
678 if (rCI.pSubpasses[i].pPreserveAttachments != DE_NULL) in calculateRenderPassHash()
679 for (deUint32 j = 0; j < rCI.pSubpasses[i].preserveAttachmentCount; ++j) in calculateRenderPassHash()
680 hash_combine(seed, rCI.pSubpasses[i].pPreserveAttachments[j]); in calculateRenderPassHash()
683 if (rCI.pDependencies != DE_NULL) in calculateRenderPassHash()
684 for (deUint32 i = 0; i < rCI.dependencyCount; ++i) in calculateRenderPassHash()
685 …rCI.pDependencies[i].srcSubpass, rCI.pDependencies[i].dstSubpass, deUint32(rCI.pDependencies[i].sr… in calculateRenderPassHash()
690 std::size_t calculateRenderPass2Hash (const VkRenderPassCreateInfo2& rCI, const std::map<deUint64, … in calculateRenderPass2Hash() argument
694 hashPNextChain(seed, rCI.pNext, objectHashes); in calculateRenderPass2Hash()
696 hash_combine(seed, rCI.flags); in calculateRenderPass2Hash()
698 if (rCI.pAttachments != DE_NULL) in calculateRenderPass2Hash()
699 for (deUint32 i = 0; i < rCI.attachmentCount; ++i) in calculateRenderPass2Hash()
700 …rCI.pAttachments[i].flags), deUint32(rCI.pAttachments[i].format), deUint32(rCI.pAttachments[i].sam… in calculateRenderPass2Hash()
702 if (rCI.pSubpasses != DE_NULL) in calculateRenderPass2Hash()
704 for (deUint32 i = 0; i < rCI.subpassCount; ++i) in calculateRenderPass2Hash()
706 …hash_combine(seed, deUint32(rCI.pSubpasses[i].flags), deUint32(rCI.pSubpasses[i].pipelineBindPoint… in calculateRenderPass2Hash()
707 if (rCI.pSubpasses[i].pInputAttachments != DE_NULL) in calculateRenderPass2Hash()
708 for (deUint32 j = 0; j < rCI.pSubpasses[i].inputAttachmentCount; ++j) in calculateRenderPass2Hash()
709 …hash_combine(seed, rCI.pSubpasses[i].pInputAttachments[j].attachment, deUint32(rCI.pSubpasses[i].p… in calculateRenderPass2Hash()
710 if (rCI.pSubpasses[i].pColorAttachments != DE_NULL) in calculateRenderPass2Hash()
711 for (deUint32 j = 0; j < rCI.pSubpasses[i].colorAttachmentCount; ++j) in calculateRenderPass2Hash()
712 …hash_combine(seed, rCI.pSubpasses[i].pColorAttachments[j].attachment, deUint32(rCI.pSubpasses[i].p… in calculateRenderPass2Hash()
713 if (rCI.pSubpasses[i].pResolveAttachments != DE_NULL) in calculateRenderPass2Hash()
714 for (deUint32 j = 0; j < rCI.pSubpasses[i].colorAttachmentCount; ++j) in calculateRenderPass2Hash()
715 …hash_combine(seed, rCI.pSubpasses[i].pResolveAttachments[j].attachment, deUint32(rCI.pSubpasses[i]… in calculateRenderPass2Hash()
716 if (rCI.pSubpasses[i].pDepthStencilAttachment != DE_NULL) in calculateRenderPass2Hash()
717 …hash_combine(seed, rCI.pSubpasses[i].pDepthStencilAttachment->attachment, deUint32(rCI.pSubpasses[… in calculateRenderPass2Hash()
718 if (rCI.pSubpasses[i].pPreserveAttachments != DE_NULL) in calculateRenderPass2Hash()
719 for (deUint32 j = 0; j < rCI.pSubpasses[i].preserveAttachmentCount; ++j) in calculateRenderPass2Hash()
720 hash_combine(seed, rCI.pSubpasses[i].pPreserveAttachments[j]); in calculateRenderPass2Hash()
723 if (rCI.pDependencies != DE_NULL) in calculateRenderPass2Hash()
724 for (deUint32 i = 0; i < rCI.dependencyCount; ++i) in calculateRenderPass2Hash()
725 …rCI.pDependencies[i].srcSubpass, rCI.pDependencies[i].dstSubpass, deUint32(rCI.pDependencies[i].sr… in calculateRenderPass2Hash()
727 if (rCI.pCorrelatedViewMasks != DE_NULL) in calculateRenderPass2Hash()
728 for (deUint32 i = 0; i < rCI.correlatedViewMaskCount; ++i) in calculateRenderPass2Hash()
729 hash_combine(seed, rCI.pCorrelatedViewMasks[i]); in calculateRenderPass2Hash()