Lines Matching full:framebuffer
1848 struct radv_framebuffer *framebuffer;
1852 size_t size = sizeof(*framebuffer) +
1854 framebuffer = vk_alloc2(&device->alloc, pAllocator, size, 8,
1856 if (framebuffer == NULL)
1859 framebuffer->attachment_count = pCreateInfo->attachmentCount;
1863 framebuffer->attachments[i].attachment = iview;
1865 radv_initialise_color_surface(device, &framebuffer->attachments[i].cb, iview);
1867 radv_initialise_ds_surface(device, &framebuffer->attachments[i].ds, iview);
1871 framebuffer->width = pCreateInfo->width;
1872 framebuffer->height = pCreateInfo->height;
1873 framebuffer->layers = pCreateInfo->layers;
1875 *pFramebuffer = radv_framebuffer_to_handle(framebuffer);