diff options
author | gdkchan <gab.dark.100@gmail.com> | 2024-02-15 16:04:30 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-15 16:04:30 -0300 |
commit | 74fe81432930b3bef60b3f741ebe5776d9d32e5d (patch) | |
tree | 6577818188c513e4effce370aa8404417353048c /src | |
parent | d1a093e5ca736228b96364539b8dc1522c9a0928 (diff) |
Remove Vulkan SubgroupSizeControl enablement code (#6317)1.1.1195
Diffstat (limited to 'src')
-rw-r--r-- | src/Ryujinx.Graphics.Vulkan/VulkanInitialization.cs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/Ryujinx.Graphics.Vulkan/VulkanInitialization.cs b/src/Ryujinx.Graphics.Vulkan/VulkanInitialization.cs index dd7bcf10..3b1321c5 100644 --- a/src/Ryujinx.Graphics.Vulkan/VulkanInitialization.cs +++ b/src/Ryujinx.Graphics.Vulkan/VulkanInitialization.cs @@ -486,20 +486,6 @@ namespace Ryujinx.Graphics.Vulkan pExtendedFeatures = &featuresFragmentShaderInterlock; } - PhysicalDeviceSubgroupSizeControlFeaturesEXT featuresSubgroupSizeControl; - - if (physicalDevice.IsDeviceExtensionPresent("VK_EXT_subgroup_size_control")) - { - featuresSubgroupSizeControl = new PhysicalDeviceSubgroupSizeControlFeaturesEXT - { - SType = StructureType.PhysicalDeviceSubgroupSizeControlFeaturesExt, - PNext = pExtendedFeatures, - SubgroupSizeControl = true, - }; - - pExtendedFeatures = &featuresSubgroupSizeControl; - } - PhysicalDeviceCustomBorderColorFeaturesEXT featuresCustomBorderColor; if (physicalDevice.IsDeviceExtensionPresent("VK_EXT_custom_border_color") && |