Commit 1fa1b9bb authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

wined3d: Require fragment shader image stores and atomics to create a feature level 11.0 device.

parent c2f4aaf7
...@@ -2271,6 +2271,7 @@ static bool feature_level_11_supported(const struct wined3d_physical_device_info ...@@ -2271,6 +2271,7 @@ static bool feature_level_11_supported(const struct wined3d_physical_device_info
return shader_model >= 5 return shader_model >= 5
&& info->features2.features.multiDrawIndirect && info->features2.features.multiDrawIndirect
&& info->features2.features.drawIndirectFirstInstance && info->features2.features.drawIndirectFirstInstance
&& info->features2.features.fragmentStoresAndAtomics
&& info->features2.features.tessellationShader; && info->features2.features.tessellationShader;
} }
......
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