Searched refs:renderpass_info (Results 1 – 1 of 1) sorted by relevance
789 VkRenderPassCreateInfo renderpass_info; in create_graphics_pipeline() local790 renderpass_info.sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO; in create_graphics_pipeline()791 renderpass_info.pNext = NULL; in create_graphics_pipeline()792 renderpass_info.flags = 0; in create_graphics_pipeline()793 renderpass_info.attachmentCount = num_attachments; in create_graphics_pipeline()794 renderpass_info.pAttachments = attachment_descs; in create_graphics_pipeline()795 renderpass_info.subpassCount = 1; in create_graphics_pipeline()796 renderpass_info.pSubpasses = &subpass; in create_graphics_pipeline()797 renderpass_info.dependencyCount = 0; in create_graphics_pipeline()798 renderpass_info.pDependencies = NULL; in create_graphics_pipeline()[all …]