render/vulkan: remove unused queue_props in renderer

This commit is contained in:
Simon Zeni 2023-10-26 10:43:56 -04:00 committed by Simon Ser
parent d8515b3446
commit 1c2f608331
1 changed files with 0 additions and 6 deletions

View File

@ -2848,12 +2848,6 @@ struct wlr_renderer *wlr_vk_renderer_create_with_drm_fd(int drm_fd) {
return NULL;
}
uint32_t qfam_count;
vkGetPhysicalDeviceQueueFamilyProperties(phdev, &qfam_count, NULL);
VkQueueFamilyProperties queue_props[qfam_count];
vkGetPhysicalDeviceQueueFamilyProperties(phdev, &qfam_count,
queue_props);
struct wlr_vk_device *dev = vulkan_device_create(ini, phdev);
if (!dev) {
wlr_log(WLR_ERROR, "Failed to create vulkan device");