1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

winevulkan: Remove no longer needed spec workarounds.

This commit is contained in:
Jacek Caban 2024-02-20 21:26:32 +01:00 committed by Alexandre Julliard
parent f380e34a5e
commit 7995f3813c

View file

@ -2032,14 +2032,11 @@ class VkStruct(Sequence):
# Those structs seem to be broken in spec, they are specified as
# returned only, but documented as input structs.
if name in ["VkSubpassShadingPipelineCreateInfoHUAWEI",
"VkPipelineShaderStageRequiredSubgroupSizeCreateInfo"]:
if name in ["VkPipelineShaderStageRequiredSubgroupSizeCreateInfo"]:
returnedonly = False
# Those structs don't have returnedonly in spec, but they could (should?).
if name in ["VkSurfaceCapabilitiesPresentBarrierNV",
"VkCooperativeMatrixPropertiesNV",
"VkPerformanceValueINTEL"]:
if name in ["VkSurfaceCapabilitiesPresentBarrierNV"]:
returnedonly = True
structextends = struct.attrib.get("structextends")