Browse Source

Remove Vulkan SubgroupSizeControl enablement code (#6317)

gdkchan 2 năm trước cách đây
mục cha
commit
74fe814329
1 tập tin đã thay đổi với 0 bổ sung14 xóa
  1. 0 14
      src/Ryujinx.Graphics.Vulkan/VulkanInitialization.cs

+ 0 - 14
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") &&