From 053e2fd9d0e61672a2802c4af6543f86c50f9512 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Mon, 13 Jun 2022 14:37:05 +0200 Subject: [PATCH] dzn: fill in minmax props This should be possible to support, but we don't support minmax blending at all yet, so let's leave these as unsupported for now. Reviewed-by: Jesse Natalie Reviewed-by: Boris Brezillon Part-of: --- src/microsoft/vulkan/dzn_device.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/microsoft/vulkan/dzn_device.c b/src/microsoft/vulkan/dzn_device.c index d75ba42a5e8..4cf58959fa0 100644 --- a/src/microsoft/vulkan/dzn_device.c +++ b/src/microsoft/vulkan/dzn_device.c @@ -1626,6 +1626,8 @@ dzn_GetPhysicalDeviceProperties2(VkPhysicalDevice physicalDevice, .supportedStencilResolveModes = VK_RESOLVE_MODE_SAMPLE_ZERO_BIT, .independentResolveNone = false, .independentResolve = false, + .filterMinmaxSingleComponentFormats = false, + .filterMinmaxImageComponentMapping = false, }; snprintf(core_1_2.driverName, VK_MAX_DRIVER_NAME_SIZE, "Dozen");