Module: wine Branch: master Commit: 80771f1c4bfe2d864e32b93a6c5e4d748879dc2d URL: https://gitlab.winehq.org/wine/wine/-/commit/80771f1c4bfe2d864e32b93a6c5e4d7...
Author: Zebediah Figura zfigura@codeweavers.com Date: Sun Dec 4 18:40:08 2022 -0600
wined3d: Require depth bias clamp 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 d38882ff5ab..e5a9e80decb 100644 --- a/dlls/wined3d/adapter_vk.c +++ b/dlls/wined3d/adapter_vk.c @@ -2258,6 +2258,7 @@ static bool feature_level_10_supported(const struct wined3d_physical_device_info && info->features2.features.multiViewport && info->features2.features.geometryShader && info->features2.features.depthClamp + && info->features2.features.depthBiasClamp && info->vertex_divisor_features.vertexAttributeInstanceRateDivisor && info->vertex_divisor_features.vertexAttributeInstanceRateZeroDivisor; }