Commit ac84b8f0 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

winevulkan: Drop the WINEVULKAN_QUIRK_IGNORE_EXPLICIT_LAYERS quirk.

It's not set anywhere.
parent bfb5064f
...@@ -526,11 +526,8 @@ static VkResult wine_vk_instance_convert_create_info(struct conversion_context * ...@@ -526,11 +526,8 @@ static VkResult wine_vk_instance_convert_create_info(struct conversion_context *
/* ICDs don't support any layers, so nothing to copy. Modern versions of the loader /* ICDs don't support any layers, so nothing to copy. Modern versions of the loader
* filter this data out as well. * filter this data out as well.
*/ */
if (object->quirks & WINEVULKAN_QUIRK_IGNORE_EXPLICIT_LAYERS) { if (dst->enabledLayerCount)
dst->enabledLayerCount = 0; {
dst->ppEnabledLayerNames = NULL;
WARN("Ignoring explicit layers!\n");
} else if (dst->enabledLayerCount) {
FIXME("Loading explicit layers is not supported by winevulkan!\n"); FIXME("Loading explicit layers is not supported by winevulkan!\n");
return VK_ERROR_LAYER_NOT_PRESENT; return VK_ERROR_LAYER_NOT_PRESENT;
} }
......
...@@ -40,7 +40,6 @@ ...@@ -40,7 +40,6 @@
#define WINEVULKAN_QUIRK_GET_DEVICE_PROC_ADDR 0x00000001 #define WINEVULKAN_QUIRK_GET_DEVICE_PROC_ADDR 0x00000001
#define WINEVULKAN_QUIRK_ADJUST_MAX_IMAGE_COUNT 0x00000002 #define WINEVULKAN_QUIRK_ADJUST_MAX_IMAGE_COUNT 0x00000002
#define WINEVULKAN_QUIRK_IGNORE_EXPLICIT_LAYERS 0x00000004
/* Base 'class' for our Vulkan dispatchable objects such as VkDevice and VkInstance. /* Base 'class' for our Vulkan dispatchable objects such as VkDevice and VkInstance.
* This structure MUST be the first element of a dispatchable object as the ICD * This structure MUST be the first element of a dispatchable object as the ICD
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment