Module: wine Branch: master Commit: a25ae51c1462eb2219f28d184a0d5838109da572 URL: https://gitlab.winehq.org/wine/wine/-/commit/a25ae51c1462eb2219f28d184a0d583...
Author: Zebediah Figura zfigura@codeweavers.com Date: Sun Dec 4 19:11:26 2022 -0600
wined3d: Require pipeline statistics queries to create a feature level 10.0 device.
---
dlls/wined3d/adapter_vk.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/wined3d/adapter_vk.c b/dlls/wined3d/adapter_vk.c index a7b2ff76e28..12bef2fba51 100644 --- a/dlls/wined3d/adapter_vk.c +++ b/dlls/wined3d/adapter_vk.c @@ -2265,6 +2265,7 @@ static bool feature_level_10_supported(const struct wined3d_physical_device_info && info->features2.features.geometryShader && info->features2.features.depthClamp && info->features2.features.depthBiasClamp + && info->features2.features.pipelineStatisticsQuery && info->vertex_divisor_features.vertexAttributeInstanceRateDivisor && info->vertex_divisor_features.vertexAttributeInstanceRateZeroDivisor; }