Просмотр исходного кода

Remove Vulkan SubgroupSizeControl enablement code (#6317)

gdkchan 2 лет назад
Родитель
Сommit
74fe814329
1 измененных файлов с 0 добавлено и 14 удалено
  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;
                 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;
             PhysicalDeviceCustomBorderColorFeaturesEXT featuresCustomBorderColor;
 
 
             if (physicalDevice.IsDeviceExtensionPresent("VK_EXT_custom_border_color") &&
             if (physicalDevice.IsDeviceExtensionPresent("VK_EXT_custom_border_color") &&