Lines Matching defs:fci
74 VkFramebufferCreateInfo fci;
75 fci.sType = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO;
76 fci.flags = VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT;
77 fci.renderPass = rp->render_pass;
78 fci.attachmentCount = fb->state.num_attachments;
79 fci.pAttachments = NULL;
80 fci.width = fb->state.width;
81 fci.height = fb->state.height;
82 fci.layers = fb->state.layers + 1;
89 fci.pNext = &attachments;
91 if (VKSCR(CreateFramebuffer)(screen->dev, &fci, NULL, &ret) != VK_SUCCESS)