Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions loader/loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -6462,15 +6462,6 @@ VKAPI_ATTR VkResult VKAPI_CALL terminator_CreateDevice(VkPhysicalDevice physical

VkPhysicalDeviceProperties properties;
icd_term->dispatch.GetPhysicalDeviceProperties(phys_dev_term->phys_dev, &properties);
if (properties.apiVersion >= VK_API_VERSION_1_1) {
dev->driver_extensions.version_1_1_enabled = true;
}
if (properties.apiVersion >= VK_API_VERSION_1_2) {
dev->driver_extensions.version_1_2_enabled = true;
}
if (properties.apiVersion >= VK_API_VERSION_1_3) {
dev->driver_extensions.version_1_3_enabled = true;
}

loader_log(icd_term->this_instance, VULKAN_LOADER_LAYER_BIT | VULKAN_LOADER_DRIVER_BIT, 0,
" Using \"%s\" with driver: \"%s\"", properties.deviceName, icd_term->scanned_icd->lib_name);
Expand Down
3 changes: 0 additions & 3 deletions loader/loader_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,6 @@ struct loader_device {
bool ext_debug_marker_enabled;
bool ext_debug_utils_enabled;
bool ext_full_screen_exclusive_enabled;
bool version_1_1_enabled;
bool version_1_2_enabled;
bool version_1_3_enabled;
} driver_extensions;

struct loader_device *next;
Expand Down
Loading