1 use crate::vk::bitflags::*; 2 use crate::vk::enums::*; 3 #[doc = "Generated from 'VK_VERSION_1_1'"] 4 impl BufferCreateFlags { 5 #[doc = "Buffer requires protected memory"] 6 pub const PROTECTED: Self = Self(0b1000); 7 } 8 #[doc = "Generated from 'VK_VERSION_1_1'"] 9 impl CommandPoolCreateFlags { 10 #[doc = "Command buffers allocated from pool are protected command buffers"] 11 pub const PROTECTED: Self = Self(0b100); 12 } 13 #[doc = "Generated from 'VK_VERSION_1_1'"] 14 impl DependencyFlags { 15 #[doc = "Dependency is across devices"] 16 pub const DEVICE_GROUP: Self = Self(0b100); 17 pub const VIEW_LOCAL: Self = Self(0b10); 18 } 19 #[doc = "Generated from 'VK_VERSION_1_1'"] 20 impl DeviceQueueCreateFlags { 21 #[doc = "Queue is a protected-capable device queue"] 22 pub const PROTECTED: Self = Self(0b1); 23 } 24 #[doc = "Generated from 'VK_VERSION_1_1'"] 25 impl Format { 26 pub const G8B8G8R8_422_UNORM: Self = Self(1_000_156_000); 27 pub const B8G8R8G8_422_UNORM: Self = Self(1_000_156_001); 28 pub const G8_B8_R8_3PLANE_420_UNORM: Self = Self(1_000_156_002); 29 pub const G8_B8R8_2PLANE_420_UNORM: Self = Self(1_000_156_003); 30 pub const G8_B8_R8_3PLANE_422_UNORM: Self = Self(1_000_156_004); 31 pub const G8_B8R8_2PLANE_422_UNORM: Self = Self(1_000_156_005); 32 pub const G8_B8_R8_3PLANE_444_UNORM: Self = Self(1_000_156_006); 33 pub const R10X6_UNORM_PACK16: Self = Self(1_000_156_007); 34 pub const R10X6G10X6_UNORM_2PACK16: Self = Self(1_000_156_008); 35 pub const R10X6G10X6B10X6A10X6_UNORM_4PACK16: Self = Self(1_000_156_009); 36 pub const G10X6B10X6G10X6R10X6_422_UNORM_4PACK16: Self = Self(1_000_156_010); 37 pub const B10X6G10X6R10X6G10X6_422_UNORM_4PACK16: Self = Self(1_000_156_011); 38 pub const G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16: Self = Self(1_000_156_012); 39 pub const G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16: Self = Self(1_000_156_013); 40 pub const G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16: Self = Self(1_000_156_014); 41 pub const G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16: Self = Self(1_000_156_015); 42 pub const G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16: Self = Self(1_000_156_016); 43 pub const R12X4_UNORM_PACK16: Self = Self(1_000_156_017); 44 pub const R12X4G12X4_UNORM_2PACK16: Self = Self(1_000_156_018); 45 pub const R12X4G12X4B12X4A12X4_UNORM_4PACK16: Self = Self(1_000_156_019); 46 pub const G12X4B12X4G12X4R12X4_422_UNORM_4PACK16: Self = Self(1_000_156_020); 47 pub const B12X4G12X4R12X4G12X4_422_UNORM_4PACK16: Self = Self(1_000_156_021); 48 pub const G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16: Self = Self(1_000_156_022); 49 pub const G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16: Self = Self(1_000_156_023); 50 pub const G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16: Self = Self(1_000_156_024); 51 pub const G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16: Self = Self(1_000_156_025); 52 pub const G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16: Self = Self(1_000_156_026); 53 pub const G16B16G16R16_422_UNORM: Self = Self(1_000_156_027); 54 pub const B16G16R16G16_422_UNORM: Self = Self(1_000_156_028); 55 pub const G16_B16_R16_3PLANE_420_UNORM: Self = Self(1_000_156_029); 56 pub const G16_B16R16_2PLANE_420_UNORM: Self = Self(1_000_156_030); 57 pub const G16_B16_R16_3PLANE_422_UNORM: Self = Self(1_000_156_031); 58 pub const G16_B16R16_2PLANE_422_UNORM: Self = Self(1_000_156_032); 59 pub const G16_B16_R16_3PLANE_444_UNORM: Self = Self(1_000_156_033); 60 } 61 #[doc = "Generated from 'VK_VERSION_1_1'"] 62 impl FormatFeatureFlags { 63 #[doc = "Format can be used as the source image of image transfer commands"] 64 pub const TRANSFER_SRC: Self = Self(0b100_0000_0000_0000); 65 #[doc = "Format can be used as the destination image of image transfer commands"] 66 pub const TRANSFER_DST: Self = Self(0b1000_0000_0000_0000); 67 #[doc = "Format can have midpoint rather than cosited chroma samples"] 68 pub const MIDPOINT_CHROMA_SAMPLES: Self = Self(0b10_0000_0000_0000_0000); 69 #[doc = "Format can be used with linear filtering whilst color conversion is enabled"] 70 pub const SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER: Self = Self(0b100_0000_0000_0000_0000); 71 #[doc = "Format can have different chroma, min and mag filters"] 72 pub const SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER: Self = 73 Self(0b1000_0000_0000_0000_0000); 74 pub const SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT: Self = 75 Self(0b1_0000_0000_0000_0000_0000); 76 pub const SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE: Self = 77 Self(0b10_0000_0000_0000_0000_0000); 78 #[doc = "Format supports disjoint planes"] 79 pub const DISJOINT: Self = Self(0b100_0000_0000_0000_0000_0000); 80 #[doc = "Format can have cosited rather than midpoint chroma samples"] 81 pub const COSITED_CHROMA_SAMPLES: Self = Self(0b1000_0000_0000_0000_0000_0000); 82 } 83 #[doc = "Generated from 'VK_VERSION_1_1'"] 84 impl ImageAspectFlags { 85 pub const PLANE_0: Self = Self(0b1_0000); 86 pub const PLANE_1: Self = Self(0b10_0000); 87 pub const PLANE_2: Self = Self(0b100_0000); 88 } 89 #[doc = "Generated from 'VK_VERSION_1_1'"] 90 impl ImageCreateFlags { 91 pub const ALIAS: Self = Self(0b100_0000_0000); 92 #[doc = "Allows using VkBindImageMemoryDeviceGroupInfo::pSplitInstanceBindRegions when binding memory to the image"] 93 pub const SPLIT_INSTANCE_BIND_REGIONS: Self = Self(0b100_0000); 94 #[doc = "The 3D image can be viewed as a 2D or 2D array image"] 95 pub const TYPE_2D_ARRAY_COMPATIBLE: Self = Self(0b10_0000); 96 pub const BLOCK_TEXEL_VIEW_COMPATIBLE: Self = Self(0b1000_0000); 97 pub const EXTENDED_USAGE: Self = Self(0b1_0000_0000); 98 #[doc = "Image requires protected memory"] 99 pub const PROTECTED: Self = Self(0b1000_0000_0000); 100 pub const DISJOINT: Self = Self(0b10_0000_0000); 101 } 102 #[doc = "Generated from 'VK_VERSION_1_1'"] 103 impl ImageLayout { 104 pub const DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL: Self = Self(1_000_117_000); 105 pub const DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL: Self = Self(1_000_117_001); 106 } 107 #[doc = "Generated from 'VK_VERSION_1_1'"] 108 impl MemoryHeapFlags { 109 #[doc = "If set, heap allocations allocate multiple instances by default"] 110 pub const MULTI_INSTANCE: Self = Self(0b10); 111 } 112 #[doc = "Generated from 'VK_VERSION_1_1'"] 113 impl MemoryPropertyFlags { 114 #[doc = "Memory is protected"] 115 pub const PROTECTED: Self = Self(0b10_0000); 116 } 117 #[doc = "Generated from 'VK_VERSION_1_1'"] 118 impl ObjectType { 119 pub const SAMPLER_YCBCR_CONVERSION: Self = Self(1_000_156_000); 120 pub const DESCRIPTOR_UPDATE_TEMPLATE: Self = Self(1_000_085_000); 121 } 122 #[doc = "Generated from 'VK_VERSION_1_1'"] 123 impl PipelineCreateFlags { 124 pub const VIEW_INDEX_FROM_DEVICE_INDEX: Self = Self(0b1000); 125 pub const DISPATCH_BASE: Self = Self(0b1_0000); 126 } 127 #[doc = "Generated from 'VK_VERSION_1_1'"] 128 impl QueueFlags { 129 #[doc = "Queues may support protected operations"] 130 pub const PROTECTED: Self = Self(0b1_0000); 131 } 132 #[doc = "Generated from 'VK_VERSION_1_1'"] 133 impl Result { 134 pub const ERROR_OUT_OF_POOL_MEMORY: Self = Self(-1_000_069_000); 135 pub const ERROR_INVALID_EXTERNAL_HANDLE: Self = Self(-1_000_072_003); 136 } 137 #[doc = "Generated from 'VK_VERSION_1_1'"] 138 impl StructureType { 139 pub const PHYSICAL_DEVICE_SUBGROUP_PROPERTIES: Self = Self(1_000_094_000); 140 pub const BIND_BUFFER_MEMORY_INFO: Self = Self(1_000_157_000); 141 pub const BIND_IMAGE_MEMORY_INFO: Self = Self(1_000_157_001); 142 pub const PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES: Self = Self(1_000_083_000); 143 pub const MEMORY_DEDICATED_REQUIREMENTS: Self = Self(1_000_127_000); 144 pub const MEMORY_DEDICATED_ALLOCATE_INFO: Self = Self(1_000_127_001); 145 pub const MEMORY_ALLOCATE_FLAGS_INFO: Self = Self(1_000_060_000); 146 pub const DEVICE_GROUP_RENDER_PASS_BEGIN_INFO: Self = Self(1_000_060_003); 147 pub const DEVICE_GROUP_COMMAND_BUFFER_BEGIN_INFO: Self = Self(1_000_060_004); 148 pub const DEVICE_GROUP_SUBMIT_INFO: Self = Self(1_000_060_005); 149 pub const DEVICE_GROUP_BIND_SPARSE_INFO: Self = Self(1_000_060_006); 150 pub const BIND_BUFFER_MEMORY_DEVICE_GROUP_INFO: Self = Self(1_000_060_013); 151 pub const BIND_IMAGE_MEMORY_DEVICE_GROUP_INFO: Self = Self(1_000_060_014); 152 pub const PHYSICAL_DEVICE_GROUP_PROPERTIES: Self = Self(1_000_070_000); 153 pub const DEVICE_GROUP_DEVICE_CREATE_INFO: Self = Self(1_000_070_001); 154 pub const BUFFER_MEMORY_REQUIREMENTS_INFO_2: Self = Self(1_000_146_000); 155 pub const IMAGE_MEMORY_REQUIREMENTS_INFO_2: Self = Self(1_000_146_001); 156 pub const IMAGE_SPARSE_MEMORY_REQUIREMENTS_INFO_2: Self = Self(1_000_146_002); 157 pub const MEMORY_REQUIREMENTS_2: Self = Self(1_000_146_003); 158 pub const SPARSE_IMAGE_MEMORY_REQUIREMENTS_2: Self = Self(1_000_146_004); 159 pub const PHYSICAL_DEVICE_FEATURES_2: Self = Self(1_000_059_000); 160 pub const PHYSICAL_DEVICE_PROPERTIES_2: Self = Self(1_000_059_001); 161 pub const FORMAT_PROPERTIES_2: Self = Self(1_000_059_002); 162 pub const IMAGE_FORMAT_PROPERTIES_2: Self = Self(1_000_059_003); 163 pub const PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2: Self = Self(1_000_059_004); 164 pub const QUEUE_FAMILY_PROPERTIES_2: Self = Self(1_000_059_005); 165 pub const PHYSICAL_DEVICE_MEMORY_PROPERTIES_2: Self = Self(1_000_059_006); 166 pub const SPARSE_IMAGE_FORMAT_PROPERTIES_2: Self = Self(1_000_059_007); 167 pub const PHYSICAL_DEVICE_SPARSE_IMAGE_FORMAT_INFO_2: Self = Self(1_000_059_008); 168 pub const PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES: Self = Self(1_000_117_000); 169 pub const RENDER_PASS_INPUT_ATTACHMENT_ASPECT_CREATE_INFO: Self = Self(1_000_117_001); 170 pub const IMAGE_VIEW_USAGE_CREATE_INFO: Self = Self(1_000_117_002); 171 pub const PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO: Self = Self(1_000_117_003); 172 pub const RENDER_PASS_MULTIVIEW_CREATE_INFO: Self = Self(1_000_053_000); 173 pub const PHYSICAL_DEVICE_MULTIVIEW_FEATURES: Self = Self(1_000_053_001); 174 pub const PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES: Self = Self(1_000_053_002); 175 pub const PHYSICAL_DEVICE_VARIABLE_POINTERS_FEATURES: Self = Self(1_000_120_000); 176 pub const PHYSICAL_DEVICE_VARIABLE_POINTER_FEATURES: Self = 177 Self::PHYSICAL_DEVICE_VARIABLE_POINTERS_FEATURES; 178 pub const PROTECTED_SUBMIT_INFO: Self = Self(1_000_145_000); 179 pub const PHYSICAL_DEVICE_PROTECTED_MEMORY_FEATURES: Self = Self(1_000_145_001); 180 pub const PHYSICAL_DEVICE_PROTECTED_MEMORY_PROPERTIES: Self = Self(1_000_145_002); 181 pub const DEVICE_QUEUE_INFO_2: Self = Self(1_000_145_003); 182 pub const SAMPLER_YCBCR_CONVERSION_CREATE_INFO: Self = Self(1_000_156_000); 183 pub const SAMPLER_YCBCR_CONVERSION_INFO: Self = Self(1_000_156_001); 184 pub const BIND_IMAGE_PLANE_MEMORY_INFO: Self = Self(1_000_156_002); 185 pub const IMAGE_PLANE_MEMORY_REQUIREMENTS_INFO: Self = Self(1_000_156_003); 186 pub const PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES: Self = Self(1_000_156_004); 187 pub const SAMPLER_YCBCR_CONVERSION_IMAGE_FORMAT_PROPERTIES: Self = Self(1_000_156_005); 188 pub const DESCRIPTOR_UPDATE_TEMPLATE_CREATE_INFO: Self = Self(1_000_085_000); 189 pub const PHYSICAL_DEVICE_EXTERNAL_IMAGE_FORMAT_INFO: Self = Self(1_000_071_000); 190 pub const EXTERNAL_IMAGE_FORMAT_PROPERTIES: Self = Self(1_000_071_001); 191 pub const PHYSICAL_DEVICE_EXTERNAL_BUFFER_INFO: Self = Self(1_000_071_002); 192 pub const EXTERNAL_BUFFER_PROPERTIES: Self = Self(1_000_071_003); 193 pub const PHYSICAL_DEVICE_ID_PROPERTIES: Self = Self(1_000_071_004); 194 pub const EXTERNAL_MEMORY_BUFFER_CREATE_INFO: Self = Self(1_000_072_000); 195 pub const EXTERNAL_MEMORY_IMAGE_CREATE_INFO: Self = Self(1_000_072_001); 196 pub const EXPORT_MEMORY_ALLOCATE_INFO: Self = Self(1_000_072_002); 197 pub const PHYSICAL_DEVICE_EXTERNAL_FENCE_INFO: Self = Self(1_000_112_000); 198 pub const EXTERNAL_FENCE_PROPERTIES: Self = Self(1_000_112_001); 199 pub const EXPORT_FENCE_CREATE_INFO: Self = Self(1_000_113_000); 200 pub const EXPORT_SEMAPHORE_CREATE_INFO: Self = Self(1_000_077_000); 201 pub const PHYSICAL_DEVICE_EXTERNAL_SEMAPHORE_INFO: Self = Self(1_000_076_000); 202 pub const EXTERNAL_SEMAPHORE_PROPERTIES: Self = Self(1_000_076_001); 203 pub const PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES: Self = Self(1_000_168_000); 204 pub const DESCRIPTOR_SET_LAYOUT_SUPPORT: Self = Self(1_000_168_001); 205 pub const PHYSICAL_DEVICE_SHADER_DRAW_PARAMETERS_FEATURES: Self = Self(1_000_063_000); 206 pub const PHYSICAL_DEVICE_SHADER_DRAW_PARAMETER_FEATURES: Self = 207 Self::PHYSICAL_DEVICE_SHADER_DRAW_PARAMETERS_FEATURES; 208 } 209 #[doc = "Generated from 'VK_VERSION_1_2'"] 210 impl BufferCreateFlags { 211 pub const DEVICE_ADDRESS_CAPTURE_REPLAY: Self = Self(0b1_0000); 212 } 213 #[doc = "Generated from 'VK_VERSION_1_2'"] 214 impl BufferUsageFlags { 215 pub const SHADER_DEVICE_ADDRESS: Self = Self(0b10_0000_0000_0000_0000); 216 } 217 #[doc = "Generated from 'VK_VERSION_1_2'"] 218 impl DescriptorPoolCreateFlags { 219 pub const UPDATE_AFTER_BIND: Self = Self(0b10); 220 } 221 #[doc = "Generated from 'VK_VERSION_1_2'"] 222 impl DescriptorSetLayoutCreateFlags { 223 pub const UPDATE_AFTER_BIND_POOL: Self = Self(0b10); 224 } 225 #[doc = "Generated from 'VK_VERSION_1_2'"] 226 impl FormatFeatureFlags { 227 #[doc = "Format can be used with min/max reduction filtering"] 228 pub const SAMPLED_IMAGE_FILTER_MINMAX: Self = Self(0b1_0000_0000_0000_0000); 229 } 230 #[doc = "Generated from 'VK_VERSION_1_2'"] 231 impl FramebufferCreateFlags { 232 pub const IMAGELESS: Self = Self(0b1); 233 } 234 #[doc = "Generated from 'VK_VERSION_1_2'"] 235 impl ImageLayout { 236 pub const DEPTH_ATTACHMENT_OPTIMAL: Self = Self(1_000_241_000); 237 pub const DEPTH_READ_ONLY_OPTIMAL: Self = Self(1_000_241_001); 238 pub const STENCIL_ATTACHMENT_OPTIMAL: Self = Self(1_000_241_002); 239 pub const STENCIL_READ_ONLY_OPTIMAL: Self = Self(1_000_241_003); 240 } 241 #[doc = "Generated from 'VK_VERSION_1_2'"] 242 impl MemoryAllocateFlags { 243 pub const DEVICE_ADDRESS: Self = Self(0b10); 244 pub const DEVICE_ADDRESS_CAPTURE_REPLAY: Self = Self(0b100); 245 } 246 #[doc = "Generated from 'VK_VERSION_1_2'"] 247 impl Result { 248 pub const ERROR_FRAGMENTATION: Self = Self(-1_000_161_000); 249 pub const ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS: Self = Self(-1_000_257_000); 250 } 251 #[doc = "Generated from 'VK_VERSION_1_2'"] 252 impl StructureType { 253 pub const PHYSICAL_DEVICE_VULKAN_1_1_FEATURES: Self = Self(49); 254 pub const PHYSICAL_DEVICE_VULKAN_1_1_PROPERTIES: Self = Self(50); 255 pub const PHYSICAL_DEVICE_VULKAN_1_2_FEATURES: Self = Self(51); 256 pub const PHYSICAL_DEVICE_VULKAN_1_2_PROPERTIES: Self = Self(52); 257 pub const IMAGE_FORMAT_LIST_CREATE_INFO: Self = Self(1_000_147_000); 258 pub const ATTACHMENT_DESCRIPTION_2: Self = Self(1_000_109_000); 259 pub const ATTACHMENT_REFERENCE_2: Self = Self(1_000_109_001); 260 pub const SUBPASS_DESCRIPTION_2: Self = Self(1_000_109_002); 261 pub const SUBPASS_DEPENDENCY_2: Self = Self(1_000_109_003); 262 pub const RENDER_PASS_CREATE_INFO_2: Self = Self(1_000_109_004); 263 pub const SUBPASS_BEGIN_INFO: Self = Self(1_000_109_005); 264 pub const SUBPASS_END_INFO: Self = Self(1_000_109_006); 265 pub const PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES: Self = Self(1_000_177_000); 266 pub const PHYSICAL_DEVICE_DRIVER_PROPERTIES: Self = Self(1_000_196_000); 267 pub const PHYSICAL_DEVICE_SHADER_ATOMIC_INT64_FEATURES: Self = Self(1_000_180_000); 268 pub const PHYSICAL_DEVICE_SHADER_FLOAT16_INT8_FEATURES: Self = Self(1_000_082_000); 269 pub const PHYSICAL_DEVICE_FLOAT_CONTROLS_PROPERTIES: Self = Self(1_000_197_000); 270 pub const DESCRIPTOR_SET_LAYOUT_BINDING_FLAGS_CREATE_INFO: Self = Self(1_000_161_000); 271 pub const PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_FEATURES: Self = Self(1_000_161_001); 272 pub const PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_PROPERTIES: Self = Self(1_000_161_002); 273 pub const DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_ALLOCATE_INFO: Self = Self(1_000_161_003); 274 pub const DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_LAYOUT_SUPPORT: Self = Self(1_000_161_004); 275 pub const PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES: Self = Self(1_000_199_000); 276 pub const SUBPASS_DESCRIPTION_DEPTH_STENCIL_RESOLVE: Self = Self(1_000_199_001); 277 pub const PHYSICAL_DEVICE_SCALAR_BLOCK_LAYOUT_FEATURES: Self = Self(1_000_221_000); 278 pub const IMAGE_STENCIL_USAGE_CREATE_INFO: Self = Self(1_000_246_000); 279 pub const PHYSICAL_DEVICE_SAMPLER_FILTER_MINMAX_PROPERTIES: Self = Self(1_000_130_000); 280 pub const SAMPLER_REDUCTION_MODE_CREATE_INFO: Self = Self(1_000_130_001); 281 pub const PHYSICAL_DEVICE_VULKAN_MEMORY_MODEL_FEATURES: Self = Self(1_000_211_000); 282 pub const PHYSICAL_DEVICE_IMAGELESS_FRAMEBUFFER_FEATURES: Self = Self(1_000_108_000); 283 pub const FRAMEBUFFER_ATTACHMENTS_CREATE_INFO: Self = Self(1_000_108_001); 284 pub const FRAMEBUFFER_ATTACHMENT_IMAGE_INFO: Self = Self(1_000_108_002); 285 pub const RENDER_PASS_ATTACHMENT_BEGIN_INFO: Self = Self(1_000_108_003); 286 pub const PHYSICAL_DEVICE_UNIFORM_BUFFER_STANDARD_LAYOUT_FEATURES: Self = Self(1_000_253_000); 287 pub const PHYSICAL_DEVICE_SHADER_SUBGROUP_EXTENDED_TYPES_FEATURES: Self = Self(1_000_175_000); 288 pub const PHYSICAL_DEVICE_SEPARATE_DEPTH_STENCIL_LAYOUTS_FEATURES: Self = Self(1_000_241_000); 289 pub const ATTACHMENT_REFERENCE_STENCIL_LAYOUT: Self = Self(1_000_241_001); 290 pub const ATTACHMENT_DESCRIPTION_STENCIL_LAYOUT: Self = Self(1_000_241_002); 291 pub const PHYSICAL_DEVICE_HOST_QUERY_RESET_FEATURES: Self = Self(1_000_261_000); 292 pub const PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_FEATURES: Self = Self(1_000_207_000); 293 pub const PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_PROPERTIES: Self = Self(1_000_207_001); 294 pub const SEMAPHORE_TYPE_CREATE_INFO: Self = Self(1_000_207_002); 295 pub const TIMELINE_SEMAPHORE_SUBMIT_INFO: Self = Self(1_000_207_003); 296 pub const SEMAPHORE_WAIT_INFO: Self = Self(1_000_207_004); 297 pub const SEMAPHORE_SIGNAL_INFO: Self = Self(1_000_207_005); 298 pub const PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES: Self = Self(1_000_257_000); 299 pub const BUFFER_DEVICE_ADDRESS_INFO: Self = Self(1_000_244_001); 300 pub const BUFFER_OPAQUE_CAPTURE_ADDRESS_CREATE_INFO: Self = Self(1_000_257_002); 301 pub const MEMORY_OPAQUE_CAPTURE_ADDRESS_ALLOCATE_INFO: Self = Self(1_000_257_003); 302 pub const DEVICE_MEMORY_OPAQUE_CAPTURE_ADDRESS_INFO: Self = Self(1_000_257_004); 303 } 304 #[doc = "Generated from 'VK_VERSION_1_3'"] 305 impl AccessFlags { 306 pub const NONE: Self = Self(0); 307 } 308 #[doc = "Generated from 'VK_VERSION_1_3'"] 309 impl AttachmentStoreOp { 310 pub const NONE: Self = Self(1_000_301_000); 311 } 312 #[doc = "Generated from 'VK_VERSION_1_3'"] 313 impl DescriptorType { 314 pub const INLINE_UNIFORM_BLOCK: Self = Self(1_000_138_000); 315 } 316 #[doc = "Generated from 'VK_VERSION_1_3'"] 317 impl DynamicState { 318 pub const CULL_MODE: Self = Self(1_000_267_000); 319 pub const FRONT_FACE: Self = Self(1_000_267_001); 320 pub const PRIMITIVE_TOPOLOGY: Self = Self(1_000_267_002); 321 pub const VIEWPORT_WITH_COUNT: Self = Self(1_000_267_003); 322 pub const SCISSOR_WITH_COUNT: Self = Self(1_000_267_004); 323 pub const VERTEX_INPUT_BINDING_STRIDE: Self = Self(1_000_267_005); 324 pub const DEPTH_TEST_ENABLE: Self = Self(1_000_267_006); 325 pub const DEPTH_WRITE_ENABLE: Self = Self(1_000_267_007); 326 pub const DEPTH_COMPARE_OP: Self = Self(1_000_267_008); 327 pub const DEPTH_BOUNDS_TEST_ENABLE: Self = Self(1_000_267_009); 328 pub const STENCIL_TEST_ENABLE: Self = Self(1_000_267_010); 329 pub const STENCIL_OP: Self = Self(1_000_267_011); 330 pub const RASTERIZER_DISCARD_ENABLE: Self = Self(1_000_377_001); 331 pub const DEPTH_BIAS_ENABLE: Self = Self(1_000_377_002); 332 pub const PRIMITIVE_RESTART_ENABLE: Self = Self(1_000_377_004); 333 } 334 #[doc = "Generated from 'VK_VERSION_1_3'"] 335 impl EventCreateFlags { 336 pub const DEVICE_ONLY: Self = Self(0b1); 337 } 338 #[doc = "Generated from 'VK_VERSION_1_3'"] 339 impl Format { 340 pub const G8_B8R8_2PLANE_444_UNORM: Self = Self(1_000_330_000); 341 pub const G10X6_B10X6R10X6_2PLANE_444_UNORM_3PACK16: Self = Self(1_000_330_001); 342 pub const G12X4_B12X4R12X4_2PLANE_444_UNORM_3PACK16: Self = Self(1_000_330_002); 343 pub const G16_B16R16_2PLANE_444_UNORM: Self = Self(1_000_330_003); 344 pub const A4R4G4B4_UNORM_PACK16: Self = Self(1_000_340_000); 345 pub const A4B4G4R4_UNORM_PACK16: Self = Self(1_000_340_001); 346 pub const ASTC_4X4_SFLOAT_BLOCK: Self = Self(1_000_066_000); 347 pub const ASTC_5X4_SFLOAT_BLOCK: Self = Self(1_000_066_001); 348 pub const ASTC_5X5_SFLOAT_BLOCK: Self = Self(1_000_066_002); 349 pub const ASTC_6X5_SFLOAT_BLOCK: Self = Self(1_000_066_003); 350 pub const ASTC_6X6_SFLOAT_BLOCK: Self = Self(1_000_066_004); 351 pub const ASTC_8X5_SFLOAT_BLOCK: Self = Self(1_000_066_005); 352 pub const ASTC_8X6_SFLOAT_BLOCK: Self = Self(1_000_066_006); 353 pub const ASTC_8X8_SFLOAT_BLOCK: Self = Self(1_000_066_007); 354 pub const ASTC_10X5_SFLOAT_BLOCK: Self = Self(1_000_066_008); 355 pub const ASTC_10X6_SFLOAT_BLOCK: Self = Self(1_000_066_009); 356 pub const ASTC_10X8_SFLOAT_BLOCK: Self = Self(1_000_066_010); 357 pub const ASTC_10X10_SFLOAT_BLOCK: Self = Self(1_000_066_011); 358 pub const ASTC_12X10_SFLOAT_BLOCK: Self = Self(1_000_066_012); 359 pub const ASTC_12X12_SFLOAT_BLOCK: Self = Self(1_000_066_013); 360 } 361 #[doc = "Generated from 'VK_VERSION_1_3'"] 362 impl ImageAspectFlags { 363 pub const NONE: Self = Self(0); 364 } 365 #[doc = "Generated from 'VK_VERSION_1_3'"] 366 impl ImageLayout { 367 pub const READ_ONLY_OPTIMAL: Self = Self(1_000_314_000); 368 pub const ATTACHMENT_OPTIMAL: Self = Self(1_000_314_001); 369 } 370 #[doc = "Generated from 'VK_VERSION_1_3'"] 371 impl ObjectType { 372 pub const PRIVATE_DATA_SLOT: Self = Self(1_000_295_000); 373 } 374 #[doc = "Generated from 'VK_VERSION_1_3'"] 375 impl PipelineCacheCreateFlags { 376 pub const EXTERNALLY_SYNCHRONIZED: Self = Self(0b1); 377 } 378 #[doc = "Generated from 'VK_VERSION_1_3'"] 379 impl PipelineCreateFlags { 380 pub const FAIL_ON_PIPELINE_COMPILE_REQUIRED: Self = Self(0b1_0000_0000); 381 pub const EARLY_RETURN_ON_FAILURE: Self = Self(0b10_0000_0000); 382 } 383 #[doc = "Generated from 'VK_VERSION_1_3'"] 384 impl PipelineShaderStageCreateFlags { 385 pub const ALLOW_VARYING_SUBGROUP_SIZE: Self = Self(0b1); 386 pub const REQUIRE_FULL_SUBGROUPS: Self = Self(0b10); 387 } 388 #[doc = "Generated from 'VK_VERSION_1_3'"] 389 impl PipelineStageFlags { 390 pub const NONE: Self = Self(0); 391 } 392 #[doc = "Generated from 'VK_VERSION_1_3'"] 393 impl Result { 394 pub const PIPELINE_COMPILE_REQUIRED: Self = Self(1_000_297_000); 395 } 396 #[doc = "Generated from 'VK_VERSION_1_3'"] 397 impl StructureType { 398 pub const PHYSICAL_DEVICE_VULKAN_1_3_FEATURES: Self = Self(53); 399 pub const PHYSICAL_DEVICE_VULKAN_1_3_PROPERTIES: Self = Self(54); 400 pub const PIPELINE_CREATION_FEEDBACK_CREATE_INFO: Self = Self(1_000_192_000); 401 pub const PHYSICAL_DEVICE_SHADER_TERMINATE_INVOCATION_FEATURES: Self = Self(1_000_215_000); 402 pub const PHYSICAL_DEVICE_TOOL_PROPERTIES: Self = Self(1_000_245_000); 403 pub const PHYSICAL_DEVICE_SHADER_DEMOTE_TO_HELPER_INVOCATION_FEATURES: Self = 404 Self(1_000_276_000); 405 pub const PHYSICAL_DEVICE_PRIVATE_DATA_FEATURES: Self = Self(1_000_295_000); 406 pub const DEVICE_PRIVATE_DATA_CREATE_INFO: Self = Self(1_000_295_001); 407 pub const PRIVATE_DATA_SLOT_CREATE_INFO: Self = Self(1_000_295_002); 408 pub const PHYSICAL_DEVICE_PIPELINE_CREATION_CACHE_CONTROL_FEATURES: Self = Self(1_000_297_000); 409 pub const MEMORY_BARRIER_2: Self = Self(1_000_314_000); 410 pub const BUFFER_MEMORY_BARRIER_2: Self = Self(1_000_314_001); 411 pub const IMAGE_MEMORY_BARRIER_2: Self = Self(1_000_314_002); 412 pub const DEPENDENCY_INFO: Self = Self(1_000_314_003); 413 pub const SUBMIT_INFO_2: Self = Self(1_000_314_004); 414 pub const SEMAPHORE_SUBMIT_INFO: Self = Self(1_000_314_005); 415 pub const COMMAND_BUFFER_SUBMIT_INFO: Self = Self(1_000_314_006); 416 pub const PHYSICAL_DEVICE_SYNCHRONIZATION_2_FEATURES: Self = Self(1_000_314_007); 417 pub const PHYSICAL_DEVICE_ZERO_INITIALIZE_WORKGROUP_MEMORY_FEATURES: Self = Self(1_000_325_000); 418 pub const PHYSICAL_DEVICE_IMAGE_ROBUSTNESS_FEATURES: Self = Self(1_000_335_000); 419 pub const COPY_BUFFER_INFO_2: Self = Self(1_000_337_000); 420 pub const COPY_IMAGE_INFO_2: Self = Self(1_000_337_001); 421 pub const COPY_BUFFER_TO_IMAGE_INFO_2: Self = Self(1_000_337_002); 422 pub const COPY_IMAGE_TO_BUFFER_INFO_2: Self = Self(1_000_337_003); 423 pub const BLIT_IMAGE_INFO_2: Self = Self(1_000_337_004); 424 pub const RESOLVE_IMAGE_INFO_2: Self = Self(1_000_337_005); 425 pub const BUFFER_COPY_2: Self = Self(1_000_337_006); 426 pub const IMAGE_COPY_2: Self = Self(1_000_337_007); 427 pub const IMAGE_BLIT_2: Self = Self(1_000_337_008); 428 pub const BUFFER_IMAGE_COPY_2: Self = Self(1_000_337_009); 429 pub const IMAGE_RESOLVE_2: Self = Self(1_000_337_010); 430 pub const PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_PROPERTIES: Self = Self(1_000_225_000); 431 pub const PIPELINE_SHADER_STAGE_REQUIRED_SUBGROUP_SIZE_CREATE_INFO: Self = Self(1_000_225_001); 432 pub const PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_FEATURES: Self = Self(1_000_225_002); 433 pub const PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_FEATURES: Self = Self(1_000_138_000); 434 pub const PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_PROPERTIES: Self = Self(1_000_138_001); 435 pub const WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK: Self = Self(1_000_138_002); 436 pub const DESCRIPTOR_POOL_INLINE_UNIFORM_BLOCK_CREATE_INFO: Self = Self(1_000_138_003); 437 pub const PHYSICAL_DEVICE_TEXTURE_COMPRESSION_ASTC_HDR_FEATURES: Self = Self(1_000_066_000); 438 pub const RENDERING_INFO: Self = Self(1_000_044_000); 439 pub const RENDERING_ATTACHMENT_INFO: Self = Self(1_000_044_001); 440 pub const PIPELINE_RENDERING_CREATE_INFO: Self = Self(1_000_044_002); 441 pub const PHYSICAL_DEVICE_DYNAMIC_RENDERING_FEATURES: Self = Self(1_000_044_003); 442 pub const COMMAND_BUFFER_INHERITANCE_RENDERING_INFO: Self = Self(1_000_044_004); 443 pub const PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_FEATURES: Self = Self(1_000_280_000); 444 pub const PHYSICAL_DEVICE_SHADER_INTEGER_DOT_PRODUCT_PROPERTIES: Self = Self(1_000_280_001); 445 pub const PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_PROPERTIES: Self = Self(1_000_281_001); 446 pub const FORMAT_PROPERTIES_3: Self = Self(1_000_360_000); 447 pub const PHYSICAL_DEVICE_MAINTENANCE_4_FEATURES: Self = Self(1_000_413_000); 448 pub const PHYSICAL_DEVICE_MAINTENANCE_4_PROPERTIES: Self = Self(1_000_413_001); 449 pub const DEVICE_BUFFER_MEMORY_REQUIREMENTS: Self = Self(1_000_413_002); 450 pub const DEVICE_IMAGE_MEMORY_REQUIREMENTS: Self = Self(1_000_413_003); 451 } 452