Searched refs:renderpass_info (Results 1 – 1 of 1) sorted by relevance
707 VkRenderPassCreateInfo renderpass_info; in create_graphics_pipeline() local708 renderpass_info.sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO; in create_graphics_pipeline()709 renderpass_info.pNext = NULL; in create_graphics_pipeline()710 renderpass_info.flags = 0; in create_graphics_pipeline()711 renderpass_info.attachmentCount = num_attachments; in create_graphics_pipeline()712 renderpass_info.pAttachments = attachment_descs; in create_graphics_pipeline()713 renderpass_info.subpassCount = 1; in create_graphics_pipeline()714 renderpass_info.pSubpasses = &subpass; in create_graphics_pipeline()715 renderpass_info.dependencyCount = 0; in create_graphics_pipeline()716 renderpass_info.pDependencies = NULL; in create_graphics_pipeline()[all …]