]> git.nega.tv - josh/narcissus/commitdiff
vulkan-sys: Tidy subgroup size control definitions
authorJosh Simmons <josh@nega.tv>
Mon, 4 Nov 2024 07:25:22 +0000 (08:25 +0100)
committerJosh Simmons <josh@nega.tv>
Mon, 4 Nov 2024 21:13:23 +0000 (22:13 +0100)
external/vulkan-sys/src/enums.rs
external/vulkan-sys/src/flags.rs

index a4ff4ce76c2134faed652942c7a0e34d78ab1d00..bd4a77dfc067386b32a3b06b818c53906829ecab 100644 (file)
@@ -1223,9 +1223,9 @@ pub enum StructureType {
     PhysicalDeviceFragmentDensityMapFeaturesExt = 1000218000,
     PhysicalDeviceFragmentDensityMapPropertiesExt = 1000218001,
     RenderPassFragmentDensityMapCreateInfoExt = 1000218002,
-    PhysicalDeviceSubgroupSizeControlPropertiesExt = 1000225000,
-    PipelineShaderStageRequiredSubgroupSizeCreateInfoExt = 1000225001,
-    PhysicalDeviceSubgroupSizeControlFeaturesExt = 1000225002,
+    PhysicalDeviceSubgroupSizeControlProperties = 1000225000,
+    PipelineShaderStageRequiredSubgroupSizeCreateInfo = 1000225001,
+    PhysicalDeviceSubgroupSizeControlFeatures = 1000225002,
     FragmentShadingRateAttachmentInfoKhr = 1000226000,
     PipelineFragmentShadingRateStateCreateInfoKhr = 1000226001,
     PhysicalDeviceFragmentShadingRatePropertiesKhr = 1000226002,
index b39c7d6b9d6dd85befc768cd320a51b9a0dbd207..533bcaf9306bb27eb2d7489e03f5c73e714ef1af 100644 (file)
@@ -622,8 +622,8 @@ pub struct PipelineVertexInputStateCreateFlags(u32);
 #[repr(C)]
 pub struct PipelineShaderStageCreateFlags(u32);
 impl PipelineShaderStageCreateFlags {
-    pub const ALLOW_VARYING_SUBGROUP_SIZE_EXT: Self = Self(1);
-    pub const REQUIRE_F_SUBGROUPS_EXT: Self = Self(2);
+    pub const ALLOW_VARYING_SUBGROUP_SIZE: Self = Self(1);
+    pub const REQUIRE_FULL_SUBGROUPS: Self = Self(2);
 }
 
 #[repr(C)]