Lines Matching full:attachmentcount
3274 if (pCBCI->attachmentCount) {
3276 pCBCI->pAttachments, pCBCI->pAttachments + pCBCI->attachmentCount);
8158 VK_LAYER_EXPORT VKAPI_ATTR void VKAPI_CALL vkCmdClearAttachments(VkCommandBuffer commandBuffer, uint32_t attachmentCount,
8189 for (uint32_t attachment_idx = 0; attachment_idx < attachmentCount; attachment_idx++) {
8225 dev_data->device_dispatch_table->CmdClearAttachments(commandBuffer, attachmentCount, pAttachments, rectCount, pRects);
8967 localFBCI->pAttachments = new VkImageView[localFBCI->attachmentCount];
8968 memcpy((void *)localFBCI->pAttachments, pCreateInfo->pAttachments, localFBCI->attachmentCount * sizeof(VkImageView));
8974 for (uint32_t i = 0; i < pCreateInfo->attachmentCount; ++i) {
9097 std::vector<std::vector<uint32_t>> output_attachment_to_subpass(pCreateInfo->attachmentCount);
9098 std::vector<std::vector<uint32_t>> input_attachment_to_subpass(pCreateInfo->attachmentCount);
9099 std::vector<std::vector<uint32_t>> overlapping_attachments(pCreateInfo->attachmentCount);
9101 for (uint32_t i = 0; i < pCreateInfo->attachmentCount; ++i) {
9102 for (uint32_t j = i + 1; j < pCreateInfo->attachmentCount; ++j) {
9342 localRPCI->pAttachments = new VkAttachmentDescription[localRPCI->attachmentCount];
9344 localRPCI->attachmentCount * sizeof(VkAttachmentDescription));
9352 const uint32_t attachmentCount = subpass->inputAttachmentCount +
9355 VkAttachmentReference *attachments = new VkAttachmentReference[attachmentCount];
9391 for (uint32_t i = 0; i < pCreateInfo->attachmentCount; ++i) {
9468 if (pRenderPassInfo->attachmentCount != framebufferInfo.attachmentCount) {
9473 for (uint32_t i = 0; i < pRenderPassInfo->attachmentCount; ++i) {
9557 for (uint32_t i = 0; i < pRenderPassInfo->attachmentCount; ++i) {
9744 if (primary_data->second->pCreateInfo->attachmentCount <= primaryAttach) {
9747 if (secondary_data->second->pCreateInfo->attachmentCount <= secondaryAttach) {