ash/vk/
bitflags.rs

1use crate::vk::definitions::*;
2#[repr(transparent)]
3#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
4#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkPipelineCacheCreateFlagBits.html>"]
5pub struct PipelineCacheCreateFlags(pub(crate) Flags);
6vk_bitflags_wrapped!(PipelineCacheCreateFlags, Flags);
7impl PipelineCacheCreateFlags {}
8#[repr(transparent)]
9#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
10#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkQueueFlagBits.html>"]
11pub struct QueueFlags(pub(crate) Flags);
12vk_bitflags_wrapped!(QueueFlags, Flags);
13impl QueueFlags {
14    #[doc = "Queue supports graphics operations"]
15    pub const GRAPHICS: Self = Self(0b1);
16    #[doc = "Queue supports compute operations"]
17    pub const COMPUTE: Self = Self(0b10);
18    #[doc = "Queue supports transfer operations"]
19    pub const TRANSFER: Self = Self(0b100);
20    #[doc = "Queue supports sparse resource memory management operations"]
21    pub const SPARSE_BINDING: Self = Self(0b1000);
22}
23#[repr(transparent)]
24#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
25#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkCullModeFlagBits.html>"]
26pub struct CullModeFlags(pub(crate) Flags);
27vk_bitflags_wrapped!(CullModeFlags, Flags);
28impl CullModeFlags {
29    pub const NONE: Self = Self(0);
30    pub const FRONT: Self = Self(0b1);
31    pub const BACK: Self = Self(0b10);
32    pub const FRONT_AND_BACK: Self = Self(0x0000_0003);
33}
34#[repr(transparent)]
35#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
36#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkRenderPassCreateFlagBits.html>"]
37pub struct RenderPassCreateFlags(pub(crate) Flags);
38vk_bitflags_wrapped!(RenderPassCreateFlags, Flags);
39impl RenderPassCreateFlags {}
40#[repr(transparent)]
41#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
42#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDeviceQueueCreateFlagBits.html>"]
43pub struct DeviceQueueCreateFlags(pub(crate) Flags);
44vk_bitflags_wrapped!(DeviceQueueCreateFlags, Flags);
45impl DeviceQueueCreateFlags {}
46#[repr(transparent)]
47#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
48#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkMemoryPropertyFlagBits.html>"]
49pub struct MemoryPropertyFlags(pub(crate) Flags);
50vk_bitflags_wrapped!(MemoryPropertyFlags, Flags);
51impl MemoryPropertyFlags {
52    #[doc = "If otherwise stated, then allocate memory on device"]
53    pub const DEVICE_LOCAL: Self = Self(0b1);
54    #[doc = "Memory is mappable by host"]
55    pub const HOST_VISIBLE: Self = Self(0b10);
56    #[doc = "Memory will have i/o coherency. If not set, application may need to use vkFlushMappedMemoryRanges and vkInvalidateMappedMemoryRanges to flush/invalidate host cache"]
57    pub const HOST_COHERENT: Self = Self(0b100);
58    #[doc = "Memory will be cached by the host"]
59    pub const HOST_CACHED: Self = Self(0b1000);
60    #[doc = "Memory may be allocated by the driver when it is required"]
61    pub const LAZILY_ALLOCATED: Self = Self(0b1_0000);
62}
63#[repr(transparent)]
64#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
65#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkMemoryHeapFlagBits.html>"]
66pub struct MemoryHeapFlags(pub(crate) Flags);
67vk_bitflags_wrapped!(MemoryHeapFlags, Flags);
68impl MemoryHeapFlags {
69    #[doc = "If set, heap represents device memory"]
70    pub const DEVICE_LOCAL: Self = Self(0b1);
71}
72#[repr(transparent)]
73#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
74#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkAccessFlagBits.html>"]
75pub struct AccessFlags(pub(crate) Flags);
76vk_bitflags_wrapped!(AccessFlags, Flags);
77impl AccessFlags {
78    #[doc = "Controls coherency of indirect command reads"]
79    pub const INDIRECT_COMMAND_READ: Self = Self(0b1);
80    #[doc = "Controls coherency of index reads"]
81    pub const INDEX_READ: Self = Self(0b10);
82    #[doc = "Controls coherency of vertex attribute reads"]
83    pub const VERTEX_ATTRIBUTE_READ: Self = Self(0b100);
84    #[doc = "Controls coherency of uniform buffer reads"]
85    pub const UNIFORM_READ: Self = Self(0b1000);
86    #[doc = "Controls coherency of input attachment reads"]
87    pub const INPUT_ATTACHMENT_READ: Self = Self(0b1_0000);
88    #[doc = "Controls coherency of shader reads"]
89    pub const SHADER_READ: Self = Self(0b10_0000);
90    #[doc = "Controls coherency of shader writes"]
91    pub const SHADER_WRITE: Self = Self(0b100_0000);
92    #[doc = "Controls coherency of color attachment reads"]
93    pub const COLOR_ATTACHMENT_READ: Self = Self(0b1000_0000);
94    #[doc = "Controls coherency of color attachment writes"]
95    pub const COLOR_ATTACHMENT_WRITE: Self = Self(0b1_0000_0000);
96    #[doc = "Controls coherency of depth/stencil attachment reads"]
97    pub const DEPTH_STENCIL_ATTACHMENT_READ: Self = Self(0b10_0000_0000);
98    #[doc = "Controls coherency of depth/stencil attachment writes"]
99    pub const DEPTH_STENCIL_ATTACHMENT_WRITE: Self = Self(0b100_0000_0000);
100    #[doc = "Controls coherency of transfer reads"]
101    pub const TRANSFER_READ: Self = Self(0b1000_0000_0000);
102    #[doc = "Controls coherency of transfer writes"]
103    pub const TRANSFER_WRITE: Self = Self(0b1_0000_0000_0000);
104    #[doc = "Controls coherency of host reads"]
105    pub const HOST_READ: Self = Self(0b10_0000_0000_0000);
106    #[doc = "Controls coherency of host writes"]
107    pub const HOST_WRITE: Self = Self(0b100_0000_0000_0000);
108    #[doc = "Controls coherency of memory reads"]
109    pub const MEMORY_READ: Self = Self(0b1000_0000_0000_0000);
110    #[doc = "Controls coherency of memory writes"]
111    pub const MEMORY_WRITE: Self = Self(0b1_0000_0000_0000_0000);
112}
113#[repr(transparent)]
114#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
115#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkBufferUsageFlagBits.html>"]
116pub struct BufferUsageFlags(pub(crate) Flags);
117vk_bitflags_wrapped!(BufferUsageFlags, Flags);
118impl BufferUsageFlags {
119    #[doc = "Can be used as a source of transfer operations"]
120    pub const TRANSFER_SRC: Self = Self(0b1);
121    #[doc = "Can be used as a destination of transfer operations"]
122    pub const TRANSFER_DST: Self = Self(0b10);
123    #[doc = "Can be used as TBO"]
124    pub const UNIFORM_TEXEL_BUFFER: Self = Self(0b100);
125    #[doc = "Can be used as IBO"]
126    pub const STORAGE_TEXEL_BUFFER: Self = Self(0b1000);
127    #[doc = "Can be used as UBO"]
128    pub const UNIFORM_BUFFER: Self = Self(0b1_0000);
129    #[doc = "Can be used as SSBO"]
130    pub const STORAGE_BUFFER: Self = Self(0b10_0000);
131    #[doc = "Can be used as source of fixed-function index fetch (index buffer)"]
132    pub const INDEX_BUFFER: Self = Self(0b100_0000);
133    #[doc = "Can be used as source of fixed-function vertex fetch (VBO)"]
134    pub const VERTEX_BUFFER: Self = Self(0b1000_0000);
135    #[doc = "Can be the source of indirect parameters (e.g. indirect buffer, parameter buffer)"]
136    pub const INDIRECT_BUFFER: Self = Self(0b1_0000_0000);
137}
138#[repr(transparent)]
139#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
140#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkBufferCreateFlagBits.html>"]
141pub struct BufferCreateFlags(pub(crate) Flags);
142vk_bitflags_wrapped!(BufferCreateFlags, Flags);
143impl BufferCreateFlags {
144    #[doc = "Buffer should support sparse backing"]
145    pub const SPARSE_BINDING: Self = Self(0b1);
146    #[doc = "Buffer should support sparse backing with partial residency"]
147    pub const SPARSE_RESIDENCY: Self = Self(0b10);
148    #[doc = "Buffer should support constant data access to physical memory ranges mapped into multiple locations of sparse buffers"]
149    pub const SPARSE_ALIASED: Self = Self(0b100);
150}
151#[repr(transparent)]
152#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
153#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkShaderStageFlagBits.html>"]
154pub struct ShaderStageFlags(pub(crate) Flags);
155vk_bitflags_wrapped!(ShaderStageFlags, Flags);
156impl ShaderStageFlags {
157    pub const VERTEX: Self = Self(0b1);
158    pub const TESSELLATION_CONTROL: Self = Self(0b10);
159    pub const TESSELLATION_EVALUATION: Self = Self(0b100);
160    pub const GEOMETRY: Self = Self(0b1000);
161    pub const FRAGMENT: Self = Self(0b1_0000);
162    pub const COMPUTE: Self = Self(0b10_0000);
163    pub const ALL_GRAPHICS: Self = Self(0x0000_001F);
164    pub const ALL: Self = Self(0x7FFF_FFFF);
165}
166#[repr(transparent)]
167#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
168#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkImageUsageFlagBits.html>"]
169pub struct ImageUsageFlags(pub(crate) Flags);
170vk_bitflags_wrapped!(ImageUsageFlags, Flags);
171impl ImageUsageFlags {
172    #[doc = "Can be used as a source of transfer operations"]
173    pub const TRANSFER_SRC: Self = Self(0b1);
174    #[doc = "Can be used as a destination of transfer operations"]
175    pub const TRANSFER_DST: Self = Self(0b10);
176    #[doc = "Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER descriptor types)"]
177    pub const SAMPLED: Self = Self(0b100);
178    #[doc = "Can be used as storage image (STORAGE_IMAGE descriptor type)"]
179    pub const STORAGE: Self = Self(0b1000);
180    #[doc = "Can be used as framebuffer color attachment"]
181    pub const COLOR_ATTACHMENT: Self = Self(0b1_0000);
182    #[doc = "Can be used as framebuffer depth/stencil attachment"]
183    pub const DEPTH_STENCIL_ATTACHMENT: Self = Self(0b10_0000);
184    #[doc = "Image data not needed outside of rendering"]
185    pub const TRANSIENT_ATTACHMENT: Self = Self(0b100_0000);
186    #[doc = "Can be used as framebuffer input attachment"]
187    pub const INPUT_ATTACHMENT: Self = Self(0b1000_0000);
188}
189#[repr(transparent)]
190#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
191#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkImageCreateFlagBits.html>"]
192pub struct ImageCreateFlags(pub(crate) Flags);
193vk_bitflags_wrapped!(ImageCreateFlags, Flags);
194impl ImageCreateFlags {
195    #[doc = "Image should support sparse backing"]
196    pub const SPARSE_BINDING: Self = Self(0b1);
197    #[doc = "Image should support sparse backing with partial residency"]
198    pub const SPARSE_RESIDENCY: Self = Self(0b10);
199    #[doc = "Image should support constant data access to physical memory ranges mapped into multiple locations of sparse images"]
200    pub const SPARSE_ALIASED: Self = Self(0b100);
201    #[doc = "Allows image views to have different format than the base image"]
202    pub const MUTABLE_FORMAT: Self = Self(0b1000);
203    #[doc = "Allows creating image views with cube type from the created image"]
204    pub const CUBE_COMPATIBLE: Self = Self(0b1_0000);
205}
206#[repr(transparent)]
207#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
208#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkImageViewCreateFlagBits.html>"]
209pub struct ImageViewCreateFlags(pub(crate) Flags);
210vk_bitflags_wrapped!(ImageViewCreateFlags, Flags);
211impl ImageViewCreateFlags {}
212#[repr(transparent)]
213#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
214#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkSamplerCreateFlagBits.html>"]
215pub struct SamplerCreateFlags(pub(crate) Flags);
216vk_bitflags_wrapped!(SamplerCreateFlags, Flags);
217impl SamplerCreateFlags {}
218#[repr(transparent)]
219#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
220#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkPipelineCreateFlagBits.html>"]
221pub struct PipelineCreateFlags(pub(crate) Flags);
222vk_bitflags_wrapped!(PipelineCreateFlags, Flags);
223impl PipelineCreateFlags {
224    pub const DISABLE_OPTIMIZATION: Self = Self(0b1);
225    pub const ALLOW_DERIVATIVES: Self = Self(0b10);
226    pub const DERIVATIVE: Self = Self(0b100);
227}
228#[repr(transparent)]
229#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
230#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkPipelineShaderStageCreateFlagBits.html>"]
231pub struct PipelineShaderStageCreateFlags(pub(crate) Flags);
232vk_bitflags_wrapped!(PipelineShaderStageCreateFlags, Flags);
233impl PipelineShaderStageCreateFlags {}
234#[repr(transparent)]
235#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
236#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkColorComponentFlagBits.html>"]
237pub struct ColorComponentFlags(pub(crate) Flags);
238vk_bitflags_wrapped!(ColorComponentFlags, Flags);
239impl ColorComponentFlags {
240    pub const R: Self = Self(0b1);
241    pub const G: Self = Self(0b10);
242    pub const B: Self = Self(0b100);
243    pub const A: Self = Self(0b1000);
244}
245#[repr(transparent)]
246#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
247#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkFenceCreateFlagBits.html>"]
248pub struct FenceCreateFlags(pub(crate) Flags);
249vk_bitflags_wrapped!(FenceCreateFlags, Flags);
250impl FenceCreateFlags {
251    pub const SIGNALED: Self = Self(0b1);
252}
253#[repr(transparent)]
254#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
255#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkSemaphoreCreateFlagBits.html>"]
256pub struct SemaphoreCreateFlags(pub(crate) Flags);
257vk_bitflags_wrapped!(SemaphoreCreateFlags, Flags);
258impl SemaphoreCreateFlags {}
259#[repr(transparent)]
260#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
261#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkFormatFeatureFlagBits.html>"]
262pub struct FormatFeatureFlags(pub(crate) Flags);
263vk_bitflags_wrapped!(FormatFeatureFlags, Flags);
264impl FormatFeatureFlags {
265    #[doc = "Format can be used for sampled images (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER descriptor types)"]
266    pub const SAMPLED_IMAGE: Self = Self(0b1);
267    #[doc = "Format can be used for storage images (STORAGE_IMAGE descriptor type)"]
268    pub const STORAGE_IMAGE: Self = Self(0b10);
269    #[doc = "Format supports atomic operations in case it is used for storage images"]
270    pub const STORAGE_IMAGE_ATOMIC: Self = Self(0b100);
271    #[doc = "Format can be used for uniform texel buffers (TBOs)"]
272    pub const UNIFORM_TEXEL_BUFFER: Self = Self(0b1000);
273    #[doc = "Format can be used for storage texel buffers (IBOs)"]
274    pub const STORAGE_TEXEL_BUFFER: Self = Self(0b1_0000);
275    #[doc = "Format supports atomic operations in case it is used for storage texel buffers"]
276    pub const STORAGE_TEXEL_BUFFER_ATOMIC: Self = Self(0b10_0000);
277    #[doc = "Format can be used for vertex buffers (VBOs)"]
278    pub const VERTEX_BUFFER: Self = Self(0b100_0000);
279    #[doc = "Format can be used for color attachment images"]
280    pub const COLOR_ATTACHMENT: Self = Self(0b1000_0000);
281    #[doc = "Format supports blending in case it is used for color attachment images"]
282    pub const COLOR_ATTACHMENT_BLEND: Self = Self(0b1_0000_0000);
283    #[doc = "Format can be used for depth/stencil attachment images"]
284    pub const DEPTH_STENCIL_ATTACHMENT: Self = Self(0b10_0000_0000);
285    #[doc = "Format can be used as the source image of blits with vkCmdBlitImage"]
286    pub const BLIT_SRC: Self = Self(0b100_0000_0000);
287    #[doc = "Format can be used as the destination image of blits with vkCmdBlitImage"]
288    pub const BLIT_DST: Self = Self(0b1000_0000_0000);
289    #[doc = "Format can be filtered with VK_FILTER_LINEAR when being sampled"]
290    pub const SAMPLED_IMAGE_FILTER_LINEAR: Self = Self(0b1_0000_0000_0000);
291}
292#[repr(transparent)]
293#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
294#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkQueryControlFlagBits.html>"]
295pub struct QueryControlFlags(pub(crate) Flags);
296vk_bitflags_wrapped!(QueryControlFlags, Flags);
297impl QueryControlFlags {
298    #[doc = "Require precise results to be collected by the query"]
299    pub const PRECISE: Self = Self(0b1);
300}
301#[repr(transparent)]
302#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
303#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkQueryResultFlagBits.html>"]
304pub struct QueryResultFlags(pub(crate) Flags);
305vk_bitflags_wrapped!(QueryResultFlags, Flags);
306impl QueryResultFlags {
307    #[doc = "Results of the queries are written to the destination buffer as 64-bit values"]
308    pub const TYPE_64: Self = Self(0b1);
309    #[doc = "Results of the queries are waited on before proceeding with the result copy"]
310    pub const WAIT: Self = Self(0b10);
311    #[doc = "Besides the results of the query, the availability of the results is also written"]
312    pub const WITH_AVAILABILITY: Self = Self(0b100);
313    #[doc = "Copy the partial results of the query even if the final results are not available"]
314    pub const PARTIAL: Self = Self(0b1000);
315}
316#[repr(transparent)]
317#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
318#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkCommandBufferUsageFlagBits.html>"]
319pub struct CommandBufferUsageFlags(pub(crate) Flags);
320vk_bitflags_wrapped!(CommandBufferUsageFlags, Flags);
321impl CommandBufferUsageFlags {
322    pub const ONE_TIME_SUBMIT: Self = Self(0b1);
323    pub const RENDER_PASS_CONTINUE: Self = Self(0b10);
324    #[doc = "Command buffer may be submitted/executed more than once simultaneously"]
325    pub const SIMULTANEOUS_USE: Self = Self(0b100);
326}
327#[repr(transparent)]
328#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
329#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkQueryPipelineStatisticFlagBits.html>"]
330pub struct QueryPipelineStatisticFlags(pub(crate) Flags);
331vk_bitflags_wrapped!(QueryPipelineStatisticFlags, Flags);
332impl QueryPipelineStatisticFlags {
333    #[doc = "Optional"]
334    pub const INPUT_ASSEMBLY_VERTICES: Self = Self(0b1);
335    #[doc = "Optional"]
336    pub const INPUT_ASSEMBLY_PRIMITIVES: Self = Self(0b10);
337    #[doc = "Optional"]
338    pub const VERTEX_SHADER_INVOCATIONS: Self = Self(0b100);
339    #[doc = "Optional"]
340    pub const GEOMETRY_SHADER_INVOCATIONS: Self = Self(0b1000);
341    #[doc = "Optional"]
342    pub const GEOMETRY_SHADER_PRIMITIVES: Self = Self(0b1_0000);
343    #[doc = "Optional"]
344    pub const CLIPPING_INVOCATIONS: Self = Self(0b10_0000);
345    #[doc = "Optional"]
346    pub const CLIPPING_PRIMITIVES: Self = Self(0b100_0000);
347    #[doc = "Optional"]
348    pub const FRAGMENT_SHADER_INVOCATIONS: Self = Self(0b1000_0000);
349    #[doc = "Optional"]
350    pub const TESSELLATION_CONTROL_SHADER_PATCHES: Self = Self(0b1_0000_0000);
351    #[doc = "Optional"]
352    pub const TESSELLATION_EVALUATION_SHADER_INVOCATIONS: Self = Self(0b10_0000_0000);
353    #[doc = "Optional"]
354    pub const COMPUTE_SHADER_INVOCATIONS: Self = Self(0b100_0000_0000);
355}
356#[repr(transparent)]
357#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
358#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkImageAspectFlagBits.html>"]
359pub struct ImageAspectFlags(pub(crate) Flags);
360vk_bitflags_wrapped!(ImageAspectFlags, Flags);
361impl ImageAspectFlags {
362    pub const COLOR: Self = Self(0b1);
363    pub const DEPTH: Self = Self(0b10);
364    pub const STENCIL: Self = Self(0b100);
365    pub const METADATA: Self = Self(0b1000);
366}
367#[repr(transparent)]
368#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
369#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkSparseImageFormatFlagBits.html>"]
370pub struct SparseImageFormatFlags(pub(crate) Flags);
371vk_bitflags_wrapped!(SparseImageFormatFlags, Flags);
372impl SparseImageFormatFlags {
373    #[doc = "Image uses a single mip tail region for all array layers"]
374    pub const SINGLE_MIPTAIL: Self = Self(0b1);
375    #[doc = "Image requires mip level dimensions to be an integer multiple of the sparse image block dimensions for non-tail mip levels."]
376    pub const ALIGNED_MIP_SIZE: Self = Self(0b10);
377    #[doc = "Image uses a non-standard sparse image block dimensions"]
378    pub const NONSTANDARD_BLOCK_SIZE: Self = Self(0b100);
379}
380#[repr(transparent)]
381#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
382#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkSparseMemoryBindFlagBits.html>"]
383pub struct SparseMemoryBindFlags(pub(crate) Flags);
384vk_bitflags_wrapped!(SparseMemoryBindFlags, Flags);
385impl SparseMemoryBindFlags {
386    #[doc = "Operation binds resource metadata to memory"]
387    pub const METADATA: Self = Self(0b1);
388}
389#[repr(transparent)]
390#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
391#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkPipelineStageFlagBits.html>"]
392pub struct PipelineStageFlags(pub(crate) Flags);
393vk_bitflags_wrapped!(PipelineStageFlags, Flags);
394impl PipelineStageFlags {
395    #[doc = "Before subsequent commands are processed"]
396    pub const TOP_OF_PIPE: Self = Self(0b1);
397    #[doc = "Draw/DispatchIndirect command fetch"]
398    pub const DRAW_INDIRECT: Self = Self(0b10);
399    #[doc = "Vertex/index fetch"]
400    pub const VERTEX_INPUT: Self = Self(0b100);
401    #[doc = "Vertex shading"]
402    pub const VERTEX_SHADER: Self = Self(0b1000);
403    #[doc = "Tessellation control shading"]
404    pub const TESSELLATION_CONTROL_SHADER: Self = Self(0b1_0000);
405    #[doc = "Tessellation evaluation shading"]
406    pub const TESSELLATION_EVALUATION_SHADER: Self = Self(0b10_0000);
407    #[doc = "Geometry shading"]
408    pub const GEOMETRY_SHADER: Self = Self(0b100_0000);
409    #[doc = "Fragment shading"]
410    pub const FRAGMENT_SHADER: Self = Self(0b1000_0000);
411    #[doc = "Early fragment (depth and stencil) tests"]
412    pub const EARLY_FRAGMENT_TESTS: Self = Self(0b1_0000_0000);
413    #[doc = "Late fragment (depth and stencil) tests"]
414    pub const LATE_FRAGMENT_TESTS: Self = Self(0b10_0000_0000);
415    #[doc = "Color attachment writes"]
416    pub const COLOR_ATTACHMENT_OUTPUT: Self = Self(0b100_0000_0000);
417    #[doc = "Compute shading"]
418    pub const COMPUTE_SHADER: Self = Self(0b1000_0000_0000);
419    #[doc = "Transfer/copy operations"]
420    pub const TRANSFER: Self = Self(0b1_0000_0000_0000);
421    #[doc = "After previous commands have completed"]
422    pub const BOTTOM_OF_PIPE: Self = Self(0b10_0000_0000_0000);
423    #[doc = "Indicates host (CPU) is a source/sink of the dependency"]
424    pub const HOST: Self = Self(0b100_0000_0000_0000);
425    #[doc = "All stages of the graphics pipeline"]
426    pub const ALL_GRAPHICS: Self = Self(0b1000_0000_0000_0000);
427    #[doc = "All stages supported on the queue"]
428    pub const ALL_COMMANDS: Self = Self(0b1_0000_0000_0000_0000);
429}
430#[repr(transparent)]
431#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
432#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkCommandPoolCreateFlagBits.html>"]
433pub struct CommandPoolCreateFlags(pub(crate) Flags);
434vk_bitflags_wrapped!(CommandPoolCreateFlags, Flags);
435impl CommandPoolCreateFlags {
436    #[doc = "Command buffers have a short lifetime"]
437    pub const TRANSIENT: Self = Self(0b1);
438    #[doc = "Command buffers may release their memory individually"]
439    pub const RESET_COMMAND_BUFFER: Self = Self(0b10);
440}
441#[repr(transparent)]
442#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
443#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkCommandPoolResetFlagBits.html>"]
444pub struct CommandPoolResetFlags(pub(crate) Flags);
445vk_bitflags_wrapped!(CommandPoolResetFlags, Flags);
446impl CommandPoolResetFlags {
447    #[doc = "Release resources owned by the pool"]
448    pub const RELEASE_RESOURCES: Self = Self(0b1);
449}
450#[repr(transparent)]
451#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
452#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkCommandBufferResetFlagBits.html>"]
453pub struct CommandBufferResetFlags(pub(crate) Flags);
454vk_bitflags_wrapped!(CommandBufferResetFlags, Flags);
455impl CommandBufferResetFlags {
456    #[doc = "Release resources owned by the buffer"]
457    pub const RELEASE_RESOURCES: Self = Self(0b1);
458}
459#[repr(transparent)]
460#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
461#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkSampleCountFlagBits.html>"]
462pub struct SampleCountFlags(pub(crate) Flags);
463vk_bitflags_wrapped!(SampleCountFlags, Flags);
464impl SampleCountFlags {
465    #[doc = "Sample count 1 supported"]
466    pub const TYPE_1: Self = Self(0b1);
467    #[doc = "Sample count 2 supported"]
468    pub const TYPE_2: Self = Self(0b10);
469    #[doc = "Sample count 4 supported"]
470    pub const TYPE_4: Self = Self(0b100);
471    #[doc = "Sample count 8 supported"]
472    pub const TYPE_8: Self = Self(0b1000);
473    #[doc = "Sample count 16 supported"]
474    pub const TYPE_16: Self = Self(0b1_0000);
475    #[doc = "Sample count 32 supported"]
476    pub const TYPE_32: Self = Self(0b10_0000);
477    #[doc = "Sample count 64 supported"]
478    pub const TYPE_64: Self = Self(0b100_0000);
479}
480#[repr(transparent)]
481#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
482#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkAttachmentDescriptionFlagBits.html>"]
483pub struct AttachmentDescriptionFlags(pub(crate) Flags);
484vk_bitflags_wrapped!(AttachmentDescriptionFlags, Flags);
485impl AttachmentDescriptionFlags {
486    #[doc = "The attachment may alias physical memory of another attachment in the same render pass"]
487    pub const MAY_ALIAS: Self = Self(0b1);
488}
489#[repr(transparent)]
490#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
491#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkStencilFaceFlagBits.html>"]
492pub struct StencilFaceFlags(pub(crate) Flags);
493vk_bitflags_wrapped!(StencilFaceFlags, Flags);
494impl StencilFaceFlags {
495    #[doc = "Front face"]
496    pub const FRONT: Self = Self(0b1);
497    #[doc = "Back face"]
498    pub const BACK: Self = Self(0b10);
499    #[doc = "Front and back faces"]
500    pub const FRONT_AND_BACK: Self = Self(0x0000_0003);
501}
502#[repr(transparent)]
503#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
504#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDescriptorPoolCreateFlagBits.html>"]
505pub struct DescriptorPoolCreateFlags(pub(crate) Flags);
506vk_bitflags_wrapped!(DescriptorPoolCreateFlags, Flags);
507impl DescriptorPoolCreateFlags {
508    #[doc = "Descriptor sets may be freed individually"]
509    pub const FREE_DESCRIPTOR_SET: Self = Self(0b1);
510}
511#[repr(transparent)]
512#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
513#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDependencyFlagBits.html>"]
514pub struct DependencyFlags(pub(crate) Flags);
515vk_bitflags_wrapped!(DependencyFlags, Flags);
516impl DependencyFlags {
517    #[doc = "Dependency is per pixel region "]
518    pub const BY_REGION: Self = Self(0b1);
519}
520#[repr(transparent)]
521#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
522#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkSemaphoreWaitFlagBits.html>"]
523pub struct SemaphoreWaitFlags(pub(crate) Flags);
524vk_bitflags_wrapped!(SemaphoreWaitFlags, Flags);
525impl SemaphoreWaitFlags {
526    pub const ANY: Self = Self(0b1);
527}
528#[repr(transparent)]
529#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
530#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDisplayPlaneAlphaFlagBitsKHR.html>"]
531pub struct DisplayPlaneAlphaFlagsKHR(pub(crate) Flags);
532vk_bitflags_wrapped!(DisplayPlaneAlphaFlagsKHR, Flags);
533impl DisplayPlaneAlphaFlagsKHR {
534    pub const OPAQUE: Self = Self(0b1);
535    pub const GLOBAL: Self = Self(0b10);
536    pub const PER_PIXEL: Self = Self(0b100);
537    pub const PER_PIXEL_PREMULTIPLIED: Self = Self(0b1000);
538}
539#[repr(transparent)]
540#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
541#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkCompositeAlphaFlagBitsKHR.html>"]
542pub struct CompositeAlphaFlagsKHR(pub(crate) Flags);
543vk_bitflags_wrapped!(CompositeAlphaFlagsKHR, Flags);
544impl CompositeAlphaFlagsKHR {
545    pub const OPAQUE: Self = Self(0b1);
546    pub const PRE_MULTIPLIED: Self = Self(0b10);
547    pub const POST_MULTIPLIED: Self = Self(0b100);
548    pub const INHERIT: Self = Self(0b1000);
549}
550#[repr(transparent)]
551#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
552#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkSurfaceTransformFlagBitsKHR.html>"]
553pub struct SurfaceTransformFlagsKHR(pub(crate) Flags);
554vk_bitflags_wrapped!(SurfaceTransformFlagsKHR, Flags);
555impl SurfaceTransformFlagsKHR {
556    pub const IDENTITY: Self = Self(0b1);
557    pub const ROTATE_90: Self = Self(0b10);
558    pub const ROTATE_180: Self = Self(0b100);
559    pub const ROTATE_270: Self = Self(0b1000);
560    pub const HORIZONTAL_MIRROR: Self = Self(0b1_0000);
561    pub const HORIZONTAL_MIRROR_ROTATE_90: Self = Self(0b10_0000);
562    pub const HORIZONTAL_MIRROR_ROTATE_180: Self = Self(0b100_0000);
563    pub const HORIZONTAL_MIRROR_ROTATE_270: Self = Self(0b1000_0000);
564    pub const INHERIT: Self = Self(0b1_0000_0000);
565}
566#[repr(transparent)]
567#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
568#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkSwapchainImageUsageFlagBitsANDROID.html>"]
569pub struct SwapchainImageUsageFlagsANDROID(pub(crate) Flags);
570vk_bitflags_wrapped!(SwapchainImageUsageFlagsANDROID, Flags);
571impl SwapchainImageUsageFlagsANDROID {
572    pub const SHARED: Self = Self(0b1);
573}
574#[repr(transparent)]
575#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
576#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDebugReportFlagBitsEXT.html>"]
577pub struct DebugReportFlagsEXT(pub(crate) Flags);
578vk_bitflags_wrapped!(DebugReportFlagsEXT, Flags);
579impl DebugReportFlagsEXT {
580    pub const INFORMATION: Self = Self(0b1);
581    pub const WARNING: Self = Self(0b10);
582    pub const PERFORMANCE_WARNING: Self = Self(0b100);
583    pub const ERROR: Self = Self(0b1000);
584    pub const DEBUG: Self = Self(0b1_0000);
585}
586#[repr(transparent)]
587#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
588#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkExternalMemoryHandleTypeFlagBitsNV.html>"]
589pub struct ExternalMemoryHandleTypeFlagsNV(pub(crate) Flags);
590vk_bitflags_wrapped!(ExternalMemoryHandleTypeFlagsNV, Flags);
591impl ExternalMemoryHandleTypeFlagsNV {
592    pub const OPAQUE_WIN32: Self = Self(0b1);
593    pub const OPAQUE_WIN32_KMT: Self = Self(0b10);
594    pub const D3D11_IMAGE: Self = Self(0b100);
595    pub const D3D11_IMAGE_KMT: Self = Self(0b1000);
596}
597#[repr(transparent)]
598#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
599#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkExternalMemoryFeatureFlagBitsNV.html>"]
600pub struct ExternalMemoryFeatureFlagsNV(pub(crate) Flags);
601vk_bitflags_wrapped!(ExternalMemoryFeatureFlagsNV, Flags);
602impl ExternalMemoryFeatureFlagsNV {
603    pub const DEDICATED_ONLY: Self = Self(0b1);
604    pub const EXPORTABLE: Self = Self(0b10);
605    pub const IMPORTABLE: Self = Self(0b100);
606}
607#[repr(transparent)]
608#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
609#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkSubgroupFeatureFlagBits.html>"]
610pub struct SubgroupFeatureFlags(pub(crate) Flags);
611vk_bitflags_wrapped!(SubgroupFeatureFlags, Flags);
612impl SubgroupFeatureFlags {
613    #[doc = "Basic subgroup operations"]
614    pub const BASIC: Self = Self(0b1);
615    #[doc = "Vote subgroup operations"]
616    pub const VOTE: Self = Self(0b10);
617    #[doc = "Arithmetic subgroup operations"]
618    pub const ARITHMETIC: Self = Self(0b100);
619    #[doc = "Ballot subgroup operations"]
620    pub const BALLOT: Self = Self(0b1000);
621    #[doc = "Shuffle subgroup operations"]
622    pub const SHUFFLE: Self = Self(0b1_0000);
623    #[doc = "Shuffle relative subgroup operations"]
624    pub const SHUFFLE_RELATIVE: Self = Self(0b10_0000);
625    #[doc = "Clustered subgroup operations"]
626    pub const CLUSTERED: Self = Self(0b100_0000);
627    #[doc = "Quad subgroup operations"]
628    pub const QUAD: Self = Self(0b1000_0000);
629}
630#[repr(transparent)]
631#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
632#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkIndirectCommandsLayoutUsageFlagBitsNV.html>"]
633pub struct IndirectCommandsLayoutUsageFlagsNV(pub(crate) Flags);
634vk_bitflags_wrapped!(IndirectCommandsLayoutUsageFlagsNV, Flags);
635impl IndirectCommandsLayoutUsageFlagsNV {
636    pub const EXPLICIT_PREPROCESS: Self = Self(0b1);
637    pub const INDEXED_SEQUENCES: Self = Self(0b10);
638    pub const UNORDERED_SEQUENCES: Self = Self(0b100);
639}
640#[repr(transparent)]
641#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
642#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkIndirectStateFlagBitsNV.html>"]
643pub struct IndirectStateFlagsNV(pub(crate) Flags);
644vk_bitflags_wrapped!(IndirectStateFlagsNV, Flags);
645impl IndirectStateFlagsNV {
646    pub const FLAG_FRONTFACE: Self = Self(0b1);
647}
648#[repr(transparent)]
649#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
650#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkPrivateDataSlotCreateFlagBits.html>"]
651pub struct PrivateDataSlotCreateFlags(pub(crate) Flags);
652vk_bitflags_wrapped!(PrivateDataSlotCreateFlags, Flags);
653impl PrivateDataSlotCreateFlags {}
654#[repr(transparent)]
655#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
656#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDescriptorSetLayoutCreateFlagBits.html>"]
657pub struct DescriptorSetLayoutCreateFlags(pub(crate) Flags);
658vk_bitflags_wrapped!(DescriptorSetLayoutCreateFlags, Flags);
659impl DescriptorSetLayoutCreateFlags {}
660#[repr(transparent)]
661#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
662#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkExternalMemoryHandleTypeFlagBits.html>"]
663pub struct ExternalMemoryHandleTypeFlags(pub(crate) Flags);
664vk_bitflags_wrapped!(ExternalMemoryHandleTypeFlags, Flags);
665impl ExternalMemoryHandleTypeFlags {
666    pub const OPAQUE_FD: Self = Self(0b1);
667    pub const OPAQUE_WIN32: Self = Self(0b10);
668    pub const OPAQUE_WIN32_KMT: Self = Self(0b100);
669    pub const D3D11_TEXTURE: Self = Self(0b1000);
670    pub const D3D11_TEXTURE_KMT: Self = Self(0b1_0000);
671    pub const D3D12_HEAP: Self = Self(0b10_0000);
672    pub const D3D12_RESOURCE: Self = Self(0b100_0000);
673}
674#[repr(transparent)]
675#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
676#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkExternalMemoryFeatureFlagBits.html>"]
677pub struct ExternalMemoryFeatureFlags(pub(crate) Flags);
678vk_bitflags_wrapped!(ExternalMemoryFeatureFlags, Flags);
679impl ExternalMemoryFeatureFlags {
680    pub const DEDICATED_ONLY: Self = Self(0b1);
681    pub const EXPORTABLE: Self = Self(0b10);
682    pub const IMPORTABLE: Self = Self(0b100);
683}
684#[repr(transparent)]
685#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
686#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkExternalSemaphoreHandleTypeFlagBits.html>"]
687pub struct ExternalSemaphoreHandleTypeFlags(pub(crate) Flags);
688vk_bitflags_wrapped!(ExternalSemaphoreHandleTypeFlags, Flags);
689impl ExternalSemaphoreHandleTypeFlags {
690    pub const OPAQUE_FD: Self = Self(0b1);
691    pub const OPAQUE_WIN32: Self = Self(0b10);
692    pub const OPAQUE_WIN32_KMT: Self = Self(0b100);
693    pub const D3D12_FENCE: Self = Self(0b1000);
694    pub const D3D11_FENCE: Self = Self::D3D12_FENCE;
695    pub const SYNC_FD: Self = Self(0b1_0000);
696}
697#[repr(transparent)]
698#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
699#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkExternalSemaphoreFeatureFlagBits.html>"]
700pub struct ExternalSemaphoreFeatureFlags(pub(crate) Flags);
701vk_bitflags_wrapped!(ExternalSemaphoreFeatureFlags, Flags);
702impl ExternalSemaphoreFeatureFlags {
703    pub const EXPORTABLE: Self = Self(0b1);
704    pub const IMPORTABLE: Self = Self(0b10);
705}
706#[repr(transparent)]
707#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
708#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkSemaphoreImportFlagBits.html>"]
709pub struct SemaphoreImportFlags(pub(crate) Flags);
710vk_bitflags_wrapped!(SemaphoreImportFlags, Flags);
711impl SemaphoreImportFlags {
712    pub const TEMPORARY: Self = Self(0b1);
713}
714#[repr(transparent)]
715#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
716#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkExternalFenceHandleTypeFlagBits.html>"]
717pub struct ExternalFenceHandleTypeFlags(pub(crate) Flags);
718vk_bitflags_wrapped!(ExternalFenceHandleTypeFlags, Flags);
719impl ExternalFenceHandleTypeFlags {
720    pub const OPAQUE_FD: Self = Self(0b1);
721    pub const OPAQUE_WIN32: Self = Self(0b10);
722    pub const OPAQUE_WIN32_KMT: Self = Self(0b100);
723    pub const SYNC_FD: Self = Self(0b1000);
724}
725#[repr(transparent)]
726#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
727#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkExternalFenceFeatureFlagBits.html>"]
728pub struct ExternalFenceFeatureFlags(pub(crate) Flags);
729vk_bitflags_wrapped!(ExternalFenceFeatureFlags, Flags);
730impl ExternalFenceFeatureFlags {
731    pub const EXPORTABLE: Self = Self(0b1);
732    pub const IMPORTABLE: Self = Self(0b10);
733}
734#[repr(transparent)]
735#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
736#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkFenceImportFlagBits.html>"]
737pub struct FenceImportFlags(pub(crate) Flags);
738vk_bitflags_wrapped!(FenceImportFlags, Flags);
739impl FenceImportFlags {
740    pub const TEMPORARY: Self = Self(0b1);
741}
742#[repr(transparent)]
743#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
744#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkSurfaceCounterFlagBitsEXT.html>"]
745pub struct SurfaceCounterFlagsEXT(pub(crate) Flags);
746vk_bitflags_wrapped!(SurfaceCounterFlagsEXT, Flags);
747impl SurfaceCounterFlagsEXT {
748    pub const VBLANK: Self = Self(0b1);
749}
750#[repr(transparent)]
751#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
752#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkPeerMemoryFeatureFlagBits.html>"]
753pub struct PeerMemoryFeatureFlags(pub(crate) Flags);
754vk_bitflags_wrapped!(PeerMemoryFeatureFlags, Flags);
755impl PeerMemoryFeatureFlags {
756    #[doc = "Can read with vkCmdCopy commands"]
757    pub const COPY_SRC: Self = Self(0b1);
758    #[doc = "Can write with vkCmdCopy commands"]
759    pub const COPY_DST: Self = Self(0b10);
760    #[doc = "Can read with any access type/command"]
761    pub const GENERIC_SRC: Self = Self(0b100);
762    #[doc = "Can write with and access type/command"]
763    pub const GENERIC_DST: Self = Self(0b1000);
764}
765#[repr(transparent)]
766#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
767#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkMemoryAllocateFlagBits.html>"]
768pub struct MemoryAllocateFlags(pub(crate) Flags);
769vk_bitflags_wrapped!(MemoryAllocateFlags, Flags);
770impl MemoryAllocateFlags {
771    #[doc = "Force allocation on specific devices"]
772    pub const DEVICE_MASK: Self = Self(0b1);
773}
774#[repr(transparent)]
775#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
776#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDeviceGroupPresentModeFlagBitsKHR.html>"]
777pub struct DeviceGroupPresentModeFlagsKHR(pub(crate) Flags);
778vk_bitflags_wrapped!(DeviceGroupPresentModeFlagsKHR, Flags);
779impl DeviceGroupPresentModeFlagsKHR {
780    #[doc = "Present from local memory"]
781    pub const LOCAL: Self = Self(0b1);
782    #[doc = "Present from remote memory"]
783    pub const REMOTE: Self = Self(0b10);
784    #[doc = "Present sum of local and/or remote memory"]
785    pub const SUM: Self = Self(0b100);
786    #[doc = "Each physical device presents from local memory"]
787    pub const LOCAL_MULTI_DEVICE: Self = Self(0b1000);
788}
789#[repr(transparent)]
790#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
791#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkSwapchainCreateFlagBitsKHR.html>"]
792pub struct SwapchainCreateFlagsKHR(pub(crate) Flags);
793vk_bitflags_wrapped!(SwapchainCreateFlagsKHR, Flags);
794impl SwapchainCreateFlagsKHR {}
795#[repr(transparent)]
796#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
797#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkSubpassDescriptionFlagBits.html>"]
798pub struct SubpassDescriptionFlags(pub(crate) Flags);
799vk_bitflags_wrapped!(SubpassDescriptionFlags, Flags);
800impl SubpassDescriptionFlags {}
801#[repr(transparent)]
802#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
803#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDebugUtilsMessageSeverityFlagBitsEXT.html>"]
804pub struct DebugUtilsMessageSeverityFlagsEXT(pub(crate) Flags);
805vk_bitflags_wrapped!(DebugUtilsMessageSeverityFlagsEXT, Flags);
806impl DebugUtilsMessageSeverityFlagsEXT {
807    pub const VERBOSE: Self = Self(0b1);
808    pub const INFO: Self = Self(0b1_0000);
809    pub const WARNING: Self = Self(0b1_0000_0000);
810    pub const ERROR: Self = Self(0b1_0000_0000_0000);
811}
812#[repr(transparent)]
813#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
814#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDebugUtilsMessageTypeFlagBitsEXT.html>"]
815pub struct DebugUtilsMessageTypeFlagsEXT(pub(crate) Flags);
816vk_bitflags_wrapped!(DebugUtilsMessageTypeFlagsEXT, Flags);
817impl DebugUtilsMessageTypeFlagsEXT {
818    pub const GENERAL: Self = Self(0b1);
819    pub const VALIDATION: Self = Self(0b10);
820    pub const PERFORMANCE: Self = Self(0b100);
821}
822#[repr(transparent)]
823#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
824#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDescriptorBindingFlagBits.html>"]
825pub struct DescriptorBindingFlags(pub(crate) Flags);
826vk_bitflags_wrapped!(DescriptorBindingFlags, Flags);
827impl DescriptorBindingFlags {
828    pub const UPDATE_AFTER_BIND: Self = Self(0b1);
829    pub const UPDATE_UNUSED_WHILE_PENDING: Self = Self(0b10);
830    pub const PARTIALLY_BOUND: Self = Self(0b100);
831    pub const VARIABLE_DESCRIPTOR_COUNT: Self = Self(0b1000);
832}
833#[repr(transparent)]
834#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
835#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkConditionalRenderingFlagBitsEXT.html>"]
836pub struct ConditionalRenderingFlagsEXT(pub(crate) Flags);
837vk_bitflags_wrapped!(ConditionalRenderingFlagsEXT, Flags);
838impl ConditionalRenderingFlagsEXT {
839    pub const INVERTED: Self = Self(0b1);
840}
841#[repr(transparent)]
842#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
843#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkResolveModeFlagBits.html>"]
844pub struct ResolveModeFlags(pub(crate) Flags);
845vk_bitflags_wrapped!(ResolveModeFlags, Flags);
846impl ResolveModeFlags {
847    pub const NONE: Self = Self(0);
848    pub const SAMPLE_ZERO: Self = Self(0b1);
849    pub const AVERAGE: Self = Self(0b10);
850    pub const MIN: Self = Self(0b100);
851    pub const MAX: Self = Self(0b1000);
852}
853#[repr(transparent)]
854#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
855#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkGeometryInstanceFlagBitsKHR.html>"]
856pub struct GeometryInstanceFlagsKHR(pub(crate) Flags);
857vk_bitflags_wrapped!(GeometryInstanceFlagsKHR, Flags);
858impl GeometryInstanceFlagsKHR {
859    pub const TRIANGLE_FACING_CULL_DISABLE: Self = Self(0b1);
860    pub const TRIANGLE_FLIP_FACING: Self = Self(0b10);
861    pub const FORCE_OPAQUE: Self = Self(0b100);
862    pub const FORCE_NO_OPAQUE: Self = Self(0b1000);
863    pub const TRIANGLE_FRONT_COUNTERCLOCKWISE: Self = Self::TRIANGLE_FLIP_FACING;
864}
865#[repr(transparent)]
866#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
867#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkGeometryFlagBitsKHR.html>"]
868pub struct GeometryFlagsKHR(pub(crate) Flags);
869vk_bitflags_wrapped!(GeometryFlagsKHR, Flags);
870impl GeometryFlagsKHR {
871    pub const OPAQUE: Self = Self(0b1);
872    pub const NO_DUPLICATE_ANY_HIT_INVOCATION: Self = Self(0b10);
873}
874#[repr(transparent)]
875#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
876#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkBuildAccelerationStructureFlagBitsKHR.html>"]
877pub struct BuildAccelerationStructureFlagsKHR(pub(crate) Flags);
878vk_bitflags_wrapped!(BuildAccelerationStructureFlagsKHR, Flags);
879impl BuildAccelerationStructureFlagsKHR {
880    pub const ALLOW_UPDATE: Self = Self(0b1);
881    pub const ALLOW_COMPACTION: Self = Self(0b10);
882    pub const PREFER_FAST_TRACE: Self = Self(0b100);
883    pub const PREFER_FAST_BUILD: Self = Self(0b1000);
884    pub const LOW_MEMORY: Self = Self(0b1_0000);
885}
886#[repr(transparent)]
887#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
888#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkAccelerationStructureCreateFlagBitsKHR.html>"]
889pub struct AccelerationStructureCreateFlagsKHR(pub(crate) Flags);
890vk_bitflags_wrapped!(AccelerationStructureCreateFlagsKHR, Flags);
891impl AccelerationStructureCreateFlagsKHR {
892    pub const DEVICE_ADDRESS_CAPTURE_REPLAY: Self = Self(0b1);
893}
894#[repr(transparent)]
895#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
896#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkFramebufferCreateFlagBits.html>"]
897pub struct FramebufferCreateFlags(pub(crate) Flags);
898vk_bitflags_wrapped!(FramebufferCreateFlags, Flags);
899impl FramebufferCreateFlags {}
900#[repr(transparent)]
901#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
902#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkDeviceDiagnosticsConfigFlagBitsNV.html>"]
903pub struct DeviceDiagnosticsConfigFlagsNV(pub(crate) Flags);
904vk_bitflags_wrapped!(DeviceDiagnosticsConfigFlagsNV, Flags);
905impl DeviceDiagnosticsConfigFlagsNV {
906    pub const ENABLE_SHADER_DEBUG_INFO: Self = Self(0b1);
907    pub const ENABLE_RESOURCE_TRACKING: Self = Self(0b10);
908    pub const ENABLE_AUTOMATIC_CHECKPOINTS: Self = Self(0b100);
909}
910#[repr(transparent)]
911#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
912#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkPipelineCreationFeedbackFlagBits.html>"]
913pub struct PipelineCreationFeedbackFlags(pub(crate) Flags);
914vk_bitflags_wrapped!(PipelineCreationFeedbackFlags, Flags);
915impl PipelineCreationFeedbackFlags {
916    pub const VALID: Self = Self(0b1);
917    pub const VALID_EXT: Self = Self::VALID;
918    pub const APPLICATION_PIPELINE_CACHE_HIT: Self = Self(0b10);
919    pub const APPLICATION_PIPELINE_CACHE_HIT_EXT: Self = Self::APPLICATION_PIPELINE_CACHE_HIT;
920    pub const BASE_PIPELINE_ACCELERATION: Self = Self(0b100);
921    pub const BASE_PIPELINE_ACCELERATION_EXT: Self = Self::BASE_PIPELINE_ACCELERATION;
922}
923#[repr(transparent)]
924#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
925#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkPerformanceCounterDescriptionFlagBitsKHR.html>"]
926pub struct PerformanceCounterDescriptionFlagsKHR(pub(crate) Flags);
927vk_bitflags_wrapped!(PerformanceCounterDescriptionFlagsKHR, Flags);
928impl PerformanceCounterDescriptionFlagsKHR {
929    pub const PERFORMANCE_IMPACTING: Self = Self(0b1);
930    pub const CONCURRENTLY_IMPACTED: Self = Self(0b10);
931}
932#[repr(transparent)]
933#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
934#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkAcquireProfilingLockFlagBitsKHR.html>"]
935pub struct AcquireProfilingLockFlagsKHR(pub(crate) Flags);
936vk_bitflags_wrapped!(AcquireProfilingLockFlagsKHR, Flags);
937impl AcquireProfilingLockFlagsKHR {}
938#[repr(transparent)]
939#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
940#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkShaderCorePropertiesFlagBitsAMD.html>"]
941pub struct ShaderCorePropertiesFlagsAMD(pub(crate) Flags);
942vk_bitflags_wrapped!(ShaderCorePropertiesFlagsAMD, Flags);
943impl ShaderCorePropertiesFlagsAMD {}
944#[repr(transparent)]
945#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
946#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkShaderModuleCreateFlagBits.html>"]
947pub struct ShaderModuleCreateFlags(pub(crate) Flags);
948vk_bitflags_wrapped!(ShaderModuleCreateFlags, Flags);
949impl ShaderModuleCreateFlags {}
950#[repr(transparent)]
951#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
952#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkPipelineCompilerControlFlagBitsAMD.html>"]
953pub struct PipelineCompilerControlFlagsAMD(pub(crate) Flags);
954vk_bitflags_wrapped!(PipelineCompilerControlFlagsAMD, Flags);
955impl PipelineCompilerControlFlagsAMD {}
956#[repr(transparent)]
957#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
958#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkToolPurposeFlagBits.html>"]
959pub struct ToolPurposeFlags(pub(crate) Flags);
960vk_bitflags_wrapped!(ToolPurposeFlags, Flags);
961impl ToolPurposeFlags {
962    pub const VALIDATION: Self = Self(0b1);
963    pub const VALIDATION_EXT: Self = Self::VALIDATION;
964    pub const PROFILING: Self = Self(0b10);
965    pub const PROFILING_EXT: Self = Self::PROFILING;
966    pub const TRACING: Self = Self(0b100);
967    pub const TRACING_EXT: Self = Self::TRACING;
968    pub const ADDITIONAL_FEATURES: Self = Self(0b1000);
969    pub const ADDITIONAL_FEATURES_EXT: Self = Self::ADDITIONAL_FEATURES;
970    pub const MODIFYING_FEATURES: Self = Self(0b1_0000);
971    pub const MODIFYING_FEATURES_EXT: Self = Self::MODIFYING_FEATURES;
972}
973#[repr(transparent)]
974#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
975#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkAccessFlagBits2.html>"]
976pub struct AccessFlags2(pub(crate) Flags64);
977vk_bitflags_wrapped!(AccessFlags2, Flags64);
978impl AccessFlags2 {
979    pub const NONE: Self = Self(0);
980    pub const NONE_KHR: Self = Self::NONE;
981    pub const INDIRECT_COMMAND_READ: Self = Self(0b1);
982    pub const INDIRECT_COMMAND_READ_KHR: Self = Self::INDIRECT_COMMAND_READ;
983    pub const INDEX_READ: Self = Self(0b10);
984    pub const INDEX_READ_KHR: Self = Self::INDEX_READ;
985    pub const VERTEX_ATTRIBUTE_READ: Self = Self(0b100);
986    pub const VERTEX_ATTRIBUTE_READ_KHR: Self = Self::VERTEX_ATTRIBUTE_READ;
987    pub const UNIFORM_READ: Self = Self(0b1000);
988    pub const UNIFORM_READ_KHR: Self = Self::UNIFORM_READ;
989    pub const INPUT_ATTACHMENT_READ: Self = Self(0b1_0000);
990    pub const INPUT_ATTACHMENT_READ_KHR: Self = Self::INPUT_ATTACHMENT_READ;
991    pub const SHADER_READ: Self = Self(0b10_0000);
992    pub const SHADER_READ_KHR: Self = Self::SHADER_READ;
993    pub const SHADER_WRITE: Self = Self(0b100_0000);
994    pub const SHADER_WRITE_KHR: Self = Self::SHADER_WRITE;
995    pub const COLOR_ATTACHMENT_READ: Self = Self(0b1000_0000);
996    pub const COLOR_ATTACHMENT_READ_KHR: Self = Self::COLOR_ATTACHMENT_READ;
997    pub const COLOR_ATTACHMENT_WRITE: Self = Self(0b1_0000_0000);
998    pub const COLOR_ATTACHMENT_WRITE_KHR: Self = Self::COLOR_ATTACHMENT_WRITE;
999    pub const DEPTH_STENCIL_ATTACHMENT_READ: Self = Self(0b10_0000_0000);
1000    pub const DEPTH_STENCIL_ATTACHMENT_READ_KHR: Self = Self::DEPTH_STENCIL_ATTACHMENT_READ;
1001    pub const DEPTH_STENCIL_ATTACHMENT_WRITE: Self = Self(0b100_0000_0000);
1002    pub const DEPTH_STENCIL_ATTACHMENT_WRITE_KHR: Self = Self::DEPTH_STENCIL_ATTACHMENT_WRITE;
1003    pub const TRANSFER_READ: Self = Self(0b1000_0000_0000);
1004    pub const TRANSFER_READ_KHR: Self = Self::TRANSFER_READ;
1005    pub const TRANSFER_WRITE: Self = Self(0b1_0000_0000_0000);
1006    pub const TRANSFER_WRITE_KHR: Self = Self::TRANSFER_WRITE;
1007    pub const HOST_READ: Self = Self(0b10_0000_0000_0000);
1008    pub const HOST_READ_KHR: Self = Self::HOST_READ;
1009    pub const HOST_WRITE: Self = Self(0b100_0000_0000_0000);
1010    pub const HOST_WRITE_KHR: Self = Self::HOST_WRITE;
1011    pub const MEMORY_READ: Self = Self(0b1000_0000_0000_0000);
1012    pub const MEMORY_READ_KHR: Self = Self::MEMORY_READ;
1013    pub const MEMORY_WRITE: Self = Self(0b1_0000_0000_0000_0000);
1014    pub const MEMORY_WRITE_KHR: Self = Self::MEMORY_WRITE;
1015    pub const SHADER_SAMPLED_READ: Self = Self(0b1_0000_0000_0000_0000_0000_0000_0000_0000);
1016    pub const SHADER_SAMPLED_READ_KHR: Self = Self::SHADER_SAMPLED_READ;
1017    pub const SHADER_STORAGE_READ: Self = Self(0b10_0000_0000_0000_0000_0000_0000_0000_0000);
1018    pub const SHADER_STORAGE_READ_KHR: Self = Self::SHADER_STORAGE_READ;
1019    pub const SHADER_STORAGE_WRITE: Self = Self(0b100_0000_0000_0000_0000_0000_0000_0000_0000);
1020    pub const SHADER_STORAGE_WRITE_KHR: Self = Self::SHADER_STORAGE_WRITE;
1021}
1022#[repr(transparent)]
1023#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1024#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkPipelineStageFlagBits2.html>"]
1025pub struct PipelineStageFlags2(pub(crate) Flags64);
1026vk_bitflags_wrapped!(PipelineStageFlags2, Flags64);
1027impl PipelineStageFlags2 {
1028    pub const NONE: Self = Self(0);
1029    pub const NONE_KHR: Self = Self::NONE;
1030    pub const TOP_OF_PIPE: Self = Self(0b1);
1031    pub const TOP_OF_PIPE_KHR: Self = Self::TOP_OF_PIPE;
1032    pub const DRAW_INDIRECT: Self = Self(0b10);
1033    pub const DRAW_INDIRECT_KHR: Self = Self::DRAW_INDIRECT;
1034    pub const VERTEX_INPUT: Self = Self(0b100);
1035    pub const VERTEX_INPUT_KHR: Self = Self::VERTEX_INPUT;
1036    pub const VERTEX_SHADER: Self = Self(0b1000);
1037    pub const VERTEX_SHADER_KHR: Self = Self::VERTEX_SHADER;
1038    pub const TESSELLATION_CONTROL_SHADER: Self = Self(0b1_0000);
1039    pub const TESSELLATION_CONTROL_SHADER_KHR: Self = Self::TESSELLATION_CONTROL_SHADER;
1040    pub const TESSELLATION_EVALUATION_SHADER: Self = Self(0b10_0000);
1041    pub const TESSELLATION_EVALUATION_SHADER_KHR: Self = Self::TESSELLATION_EVALUATION_SHADER;
1042    pub const GEOMETRY_SHADER: Self = Self(0b100_0000);
1043    pub const GEOMETRY_SHADER_KHR: Self = Self::GEOMETRY_SHADER;
1044    pub const FRAGMENT_SHADER: Self = Self(0b1000_0000);
1045    pub const FRAGMENT_SHADER_KHR: Self = Self::FRAGMENT_SHADER;
1046    pub const EARLY_FRAGMENT_TESTS: Self = Self(0b1_0000_0000);
1047    pub const EARLY_FRAGMENT_TESTS_KHR: Self = Self::EARLY_FRAGMENT_TESTS;
1048    pub const LATE_FRAGMENT_TESTS: Self = Self(0b10_0000_0000);
1049    pub const LATE_FRAGMENT_TESTS_KHR: Self = Self::LATE_FRAGMENT_TESTS;
1050    pub const COLOR_ATTACHMENT_OUTPUT: Self = Self(0b100_0000_0000);
1051    pub const COLOR_ATTACHMENT_OUTPUT_KHR: Self = Self::COLOR_ATTACHMENT_OUTPUT;
1052    pub const COMPUTE_SHADER: Self = Self(0b1000_0000_0000);
1053    pub const COMPUTE_SHADER_KHR: Self = Self::COMPUTE_SHADER;
1054    pub const ALL_TRANSFER: Self = Self(0b1_0000_0000_0000);
1055    pub const ALL_TRANSFER_KHR: Self = Self::ALL_TRANSFER;
1056    pub const TRANSFER: Self = Self::ALL_TRANSFER_KHR;
1057    pub const TRANSFER_KHR: Self = Self::TRANSFER;
1058    pub const BOTTOM_OF_PIPE: Self = Self(0b10_0000_0000_0000);
1059    pub const BOTTOM_OF_PIPE_KHR: Self = Self::BOTTOM_OF_PIPE;
1060    pub const HOST: Self = Self(0b100_0000_0000_0000);
1061    pub const HOST_KHR: Self = Self::HOST;
1062    pub const ALL_GRAPHICS: Self = Self(0b1000_0000_0000_0000);
1063    pub const ALL_GRAPHICS_KHR: Self = Self::ALL_GRAPHICS;
1064    pub const ALL_COMMANDS: Self = Self(0b1_0000_0000_0000_0000);
1065    pub const ALL_COMMANDS_KHR: Self = Self::ALL_COMMANDS;
1066    pub const COPY: Self = Self(0b1_0000_0000_0000_0000_0000_0000_0000_0000);
1067    pub const COPY_KHR: Self = Self::COPY;
1068    pub const RESOLVE: Self = Self(0b10_0000_0000_0000_0000_0000_0000_0000_0000);
1069    pub const RESOLVE_KHR: Self = Self::RESOLVE;
1070    pub const BLIT: Self = Self(0b100_0000_0000_0000_0000_0000_0000_0000_0000);
1071    pub const BLIT_KHR: Self = Self::BLIT;
1072    pub const CLEAR: Self = Self(0b1000_0000_0000_0000_0000_0000_0000_0000_0000);
1073    pub const CLEAR_KHR: Self = Self::CLEAR;
1074    pub const INDEX_INPUT: Self = Self(0b1_0000_0000_0000_0000_0000_0000_0000_0000_0000);
1075    pub const INDEX_INPUT_KHR: Self = Self::INDEX_INPUT;
1076    pub const VERTEX_ATTRIBUTE_INPUT: Self =
1077        Self(0b10_0000_0000_0000_0000_0000_0000_0000_0000_0000);
1078    pub const VERTEX_ATTRIBUTE_INPUT_KHR: Self = Self::VERTEX_ATTRIBUTE_INPUT;
1079    pub const PRE_RASTERIZATION_SHADERS: Self =
1080        Self(0b100_0000_0000_0000_0000_0000_0000_0000_0000_0000);
1081    pub const PRE_RASTERIZATION_SHADERS_KHR: Self = Self::PRE_RASTERIZATION_SHADERS;
1082}
1083#[repr(transparent)]
1084#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1085#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkSubmitFlagBits.html>"]
1086pub struct SubmitFlags(pub(crate) Flags);
1087vk_bitflags_wrapped!(SubmitFlags, Flags);
1088impl SubmitFlags {
1089    pub const PROTECTED: Self = Self(0b1);
1090    pub const PROTECTED_KHR: Self = Self::PROTECTED;
1091}
1092#[repr(transparent)]
1093#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1094#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkEventCreateFlagBits.html>"]
1095pub struct EventCreateFlags(pub(crate) Flags);
1096vk_bitflags_wrapped!(EventCreateFlags, Flags);
1097impl EventCreateFlags {}
1098#[repr(transparent)]
1099#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1100#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkPipelineLayoutCreateFlagBits.html>"]
1101pub struct PipelineLayoutCreateFlags(pub(crate) Flags);
1102vk_bitflags_wrapped!(PipelineLayoutCreateFlags, Flags);
1103impl PipelineLayoutCreateFlags {}
1104#[repr(transparent)]
1105#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1106#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkPipelineColorBlendStateCreateFlagBits.html>"]
1107pub struct PipelineColorBlendStateCreateFlags(pub(crate) Flags);
1108vk_bitflags_wrapped!(PipelineColorBlendStateCreateFlags, Flags);
1109impl PipelineColorBlendStateCreateFlags {}
1110#[repr(transparent)]
1111#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1112#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkPipelineDepthStencilStateCreateFlagBits.html>"]
1113pub struct PipelineDepthStencilStateCreateFlags(pub(crate) Flags);
1114vk_bitflags_wrapped!(PipelineDepthStencilStateCreateFlags, Flags);
1115impl PipelineDepthStencilStateCreateFlags {}
1116#[repr(transparent)]
1117#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1118#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoCodecOperationFlagBitsKHR.html>"]
1119pub struct VideoCodecOperationFlagsKHR(pub(crate) Flags);
1120vk_bitflags_wrapped!(VideoCodecOperationFlagsKHR, Flags);
1121impl VideoCodecOperationFlagsKHR {
1122    pub const INVALID: Self = Self(0);
1123}
1124#[repr(transparent)]
1125#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1126#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoChromaSubsamplingFlagBitsKHR.html>"]
1127pub struct VideoChromaSubsamplingFlagsKHR(pub(crate) Flags);
1128vk_bitflags_wrapped!(VideoChromaSubsamplingFlagsKHR, Flags);
1129impl VideoChromaSubsamplingFlagsKHR {
1130    pub const INVALID: Self = Self(0);
1131    pub const MONOCHROME: Self = Self(0b1);
1132    pub const TYPE_420: Self = Self(0b10);
1133    pub const TYPE_422: Self = Self(0b100);
1134    pub const TYPE_444: Self = Self(0b1000);
1135}
1136#[repr(transparent)]
1137#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1138#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoComponentBitDepthFlagBitsKHR.html>"]
1139pub struct VideoComponentBitDepthFlagsKHR(pub(crate) Flags);
1140vk_bitflags_wrapped!(VideoComponentBitDepthFlagsKHR, Flags);
1141impl VideoComponentBitDepthFlagsKHR {
1142    pub const INVALID: Self = Self(0);
1143    pub const TYPE_8: Self = Self(0b1);
1144    pub const TYPE_10: Self = Self(0b100);
1145    pub const TYPE_12: Self = Self(0b1_0000);
1146}
1147#[repr(transparent)]
1148#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1149#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoCapabilityFlagBitsKHR.html>"]
1150pub struct VideoCapabilityFlagsKHR(pub(crate) Flags);
1151vk_bitflags_wrapped!(VideoCapabilityFlagsKHR, Flags);
1152impl VideoCapabilityFlagsKHR {
1153    pub const PROTECTED_CONTENT: Self = Self(0b1);
1154    pub const SEPARATE_REFERENCE_IMAGES: Self = Self(0b10);
1155}
1156#[repr(transparent)]
1157#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1158#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoSessionCreateFlagBitsKHR.html>"]
1159pub struct VideoSessionCreateFlagsKHR(pub(crate) Flags);
1160vk_bitflags_wrapped!(VideoSessionCreateFlagsKHR, Flags);
1161impl VideoSessionCreateFlagsKHR {
1162    pub const DEFAULT: Self = Self(0);
1163    pub const PROTECTED_CONTENT: Self = Self(0b1);
1164}
1165#[repr(transparent)]
1166#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1167#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoCodingQualityPresetFlagBitsKHR.html>"]
1168pub struct VideoCodingQualityPresetFlagsKHR(pub(crate) Flags);
1169vk_bitflags_wrapped!(VideoCodingQualityPresetFlagsKHR, Flags);
1170impl VideoCodingQualityPresetFlagsKHR {
1171    pub const NORMAL: Self = Self(0b1);
1172    pub const POWER: Self = Self(0b10);
1173    pub const QUALITY: Self = Self(0b100);
1174}
1175#[repr(transparent)]
1176#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1177#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoDecodeH264PictureLayoutFlagBitsEXT.html>"]
1178pub struct VideoDecodeH264PictureLayoutFlagsEXT(pub(crate) Flags);
1179vk_bitflags_wrapped!(VideoDecodeH264PictureLayoutFlagsEXT, Flags);
1180impl VideoDecodeH264PictureLayoutFlagsEXT {
1181    pub const PROGRESSIVE: Self = Self(0);
1182    pub const INTERLACED_INTERLEAVED_LINES: Self = Self(0b1);
1183    pub const INTERLACED_SEPARATE_PLANES: Self = Self(0b10);
1184}
1185#[repr(transparent)]
1186#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1187#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoCodingControlFlagBitsKHR.html>"]
1188pub struct VideoCodingControlFlagsKHR(pub(crate) Flags);
1189vk_bitflags_wrapped!(VideoCodingControlFlagsKHR, Flags);
1190impl VideoCodingControlFlagsKHR {
1191    pub const DEFAULT: Self = Self(0);
1192    pub const RESET: Self = Self(0b1);
1193}
1194#[repr(transparent)]
1195#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1196#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoDecodeCapabilityFlagBitsKHR.html>"]
1197pub struct VideoDecodeCapabilityFlagsKHR(pub(crate) Flags);
1198vk_bitflags_wrapped!(VideoDecodeCapabilityFlagsKHR, Flags);
1199impl VideoDecodeCapabilityFlagsKHR {
1200    pub const DEFAULT: Self = Self(0);
1201    pub const DPB_AND_OUTPUT_COINCIDE: Self = Self(0b1);
1202    pub const DPB_AND_OUTPUT_DISTINCT: Self = Self(0b10);
1203}
1204#[repr(transparent)]
1205#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1206#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoDecodeFlagBitsKHR.html>"]
1207pub struct VideoDecodeFlagsKHR(pub(crate) Flags);
1208vk_bitflags_wrapped!(VideoDecodeFlagsKHR, Flags);
1209impl VideoDecodeFlagsKHR {
1210    pub const DEFAULT: Self = Self(0);
1211    pub const RESERVED_0: Self = Self(0b1);
1212}
1213#[repr(transparent)]
1214#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1215#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoEncodeFlagBitsKHR.html>"]
1216pub struct VideoEncodeFlagsKHR(pub(crate) Flags);
1217vk_bitflags_wrapped!(VideoEncodeFlagsKHR, Flags);
1218impl VideoEncodeFlagsKHR {
1219    pub const DEFAULT: Self = Self(0);
1220    pub const RESERVED_0: Self = Self(0b1);
1221}
1222#[repr(transparent)]
1223#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1224#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoEncodeCapabilityFlagBitsKHR.html>"]
1225pub struct VideoEncodeCapabilityFlagsKHR(pub(crate) Flags);
1226vk_bitflags_wrapped!(VideoEncodeCapabilityFlagsKHR, Flags);
1227impl VideoEncodeCapabilityFlagsKHR {
1228    pub const DEFAULT: Self = Self(0);
1229    pub const PRECEDING_EXTERNALLY_ENCODED_BYTES: Self = Self(0b1);
1230}
1231#[repr(transparent)]
1232#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1233#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoEncodeRateControlFlagBitsKHR.html>"]
1234pub struct VideoEncodeRateControlFlagsKHR(pub(crate) Flags);
1235vk_bitflags_wrapped!(VideoEncodeRateControlFlagsKHR, Flags);
1236impl VideoEncodeRateControlFlagsKHR {
1237    pub const DEFAULT: Self = Self(0);
1238    pub const RESERVED_0: Self = Self(0b1);
1239}
1240#[repr(transparent)]
1241#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1242#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoEncodeRateControlModeFlagBitsKHR.html>"]
1243pub struct VideoEncodeRateControlModeFlagsKHR(pub(crate) Flags);
1244vk_bitflags_wrapped!(VideoEncodeRateControlModeFlagsKHR, Flags);
1245impl VideoEncodeRateControlModeFlagsKHR {
1246    pub const NONE: Self = Self(0);
1247    pub const CBR: Self = Self(1);
1248    pub const VBR: Self = Self(2);
1249}
1250#[repr(transparent)]
1251#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1252#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoEncodeH264CapabilityFlagBitsEXT.html>"]
1253pub struct VideoEncodeH264CapabilityFlagsEXT(pub(crate) Flags);
1254vk_bitflags_wrapped!(VideoEncodeH264CapabilityFlagsEXT, Flags);
1255impl VideoEncodeH264CapabilityFlagsEXT {
1256    pub const DIRECT_8X8_INFERENCE: Self = Self(0b1);
1257    pub const SEPARATE_COLOUR_PLANE: Self = Self(0b10);
1258    pub const QPPRIME_Y_ZERO_TRANSFORM_BYPASS: Self = Self(0b100);
1259    pub const SCALING_LISTS: Self = Self(0b1000);
1260    pub const HRD_COMPLIANCE: Self = Self(0b1_0000);
1261    pub const CHROMA_QP_OFFSET: Self = Self(0b10_0000);
1262    pub const SECOND_CHROMA_QP_OFFSET: Self = Self(0b100_0000);
1263    pub const PIC_INIT_QP_MINUS26: Self = Self(0b1000_0000);
1264    pub const WEIGHTED_PRED: Self = Self(0b1_0000_0000);
1265    pub const WEIGHTED_BIPRED_EXPLICIT: Self = Self(0b10_0000_0000);
1266    pub const WEIGHTED_BIPRED_IMPLICIT: Self = Self(0b100_0000_0000);
1267    pub const WEIGHTED_PRED_NO_TABLE: Self = Self(0b1000_0000_0000);
1268    pub const TRANSFORM_8X8: Self = Self(0b1_0000_0000_0000);
1269    pub const CABAC: Self = Self(0b10_0000_0000_0000);
1270    pub const CAVLC: Self = Self(0b100_0000_0000_0000);
1271    pub const DEBLOCKING_FILTER_DISABLED: Self = Self(0b1000_0000_0000_0000);
1272    pub const DEBLOCKING_FILTER_ENABLED: Self = Self(0b1_0000_0000_0000_0000);
1273    pub const DEBLOCKING_FILTER_PARTIAL: Self = Self(0b10_0000_0000_0000_0000);
1274    pub const DISABLE_DIRECT_SPATIAL_MV_PRED: Self = Self(0b100_0000_0000_0000_0000);
1275    pub const MULTIPLE_SLICE_PER_FRAME: Self = Self(0b1000_0000_0000_0000_0000);
1276    pub const SLICE_MB_COUNT: Self = Self(0b1_0000_0000_0000_0000_0000);
1277    pub const ROW_UNALIGNED_SLICE: Self = Self(0b10_0000_0000_0000_0000_0000);
1278    pub const DIFFERENT_SLICE_TYPE: Self = Self(0b100_0000_0000_0000_0000_0000);
1279}
1280#[repr(transparent)]
1281#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1282#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoEncodeH264InputModeFlagBitsEXT.html>"]
1283pub struct VideoEncodeH264InputModeFlagsEXT(pub(crate) Flags);
1284vk_bitflags_wrapped!(VideoEncodeH264InputModeFlagsEXT, Flags);
1285impl VideoEncodeH264InputModeFlagsEXT {
1286    pub const FRAME: Self = Self(0b1);
1287    pub const SLICE: Self = Self(0b10);
1288    pub const NON_VCL: Self = Self(0b100);
1289}
1290#[repr(transparent)]
1291#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1292#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoEncodeH264OutputModeFlagBitsEXT.html>"]
1293pub struct VideoEncodeH264OutputModeFlagsEXT(pub(crate) Flags);
1294vk_bitflags_wrapped!(VideoEncodeH264OutputModeFlagsEXT, Flags);
1295impl VideoEncodeH264OutputModeFlagsEXT {
1296    pub const FRAME: Self = Self(0b1);
1297    pub const SLICE: Self = Self(0b10);
1298    pub const NON_VCL: Self = Self(0b100);
1299}
1300#[repr(transparent)]
1301#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1302#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoEncodeH264RateControlStructureFlagBitsEXT.html>"]
1303pub struct VideoEncodeH264RateControlStructureFlagsEXT(pub(crate) Flags);
1304vk_bitflags_wrapped!(VideoEncodeH264RateControlStructureFlagsEXT, Flags);
1305impl VideoEncodeH264RateControlStructureFlagsEXT {
1306    pub const UNKNOWN: Self = Self(0);
1307    pub const FLAT: Self = Self(0b1);
1308    pub const DYADIC: Self = Self(0b10);
1309}
1310#[repr(transparent)]
1311#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1312#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkImageFormatConstraintsFlagBitsFUCHSIA.html>"]
1313pub struct ImageFormatConstraintsFlagsFUCHSIA(pub(crate) Flags);
1314vk_bitflags_wrapped!(ImageFormatConstraintsFlagsFUCHSIA, Flags);
1315impl ImageFormatConstraintsFlagsFUCHSIA {}
1316#[repr(transparent)]
1317#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1318#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkImageConstraintsInfoFlagBitsFUCHSIA.html>"]
1319pub struct ImageConstraintsInfoFlagsFUCHSIA(pub(crate) Flags);
1320vk_bitflags_wrapped!(ImageConstraintsInfoFlagsFUCHSIA, Flags);
1321impl ImageConstraintsInfoFlagsFUCHSIA {
1322    pub const CPU_READ_RARELY: Self = Self(0b1);
1323    pub const CPU_READ_OFTEN: Self = Self(0b10);
1324    pub const CPU_WRITE_RARELY: Self = Self(0b100);
1325    pub const CPU_WRITE_OFTEN: Self = Self(0b1000);
1326    pub const PROTECTED_OPTIONAL: Self = Self(0b1_0000);
1327}
1328#[repr(transparent)]
1329#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1330#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkFormatFeatureFlagBits2.html>"]
1331pub struct FormatFeatureFlags2(pub(crate) Flags64);
1332vk_bitflags_wrapped!(FormatFeatureFlags2, Flags64);
1333impl FormatFeatureFlags2 {
1334    pub const SAMPLED_IMAGE: Self = Self(0b1);
1335    pub const SAMPLED_IMAGE_KHR: Self = Self::SAMPLED_IMAGE;
1336    pub const STORAGE_IMAGE: Self = Self(0b10);
1337    pub const STORAGE_IMAGE_KHR: Self = Self::STORAGE_IMAGE;
1338    pub const STORAGE_IMAGE_ATOMIC: Self = Self(0b100);
1339    pub const STORAGE_IMAGE_ATOMIC_KHR: Self = Self::STORAGE_IMAGE_ATOMIC;
1340    pub const UNIFORM_TEXEL_BUFFER: Self = Self(0b1000);
1341    pub const UNIFORM_TEXEL_BUFFER_KHR: Self = Self::UNIFORM_TEXEL_BUFFER;
1342    pub const STORAGE_TEXEL_BUFFER: Self = Self(0b1_0000);
1343    pub const STORAGE_TEXEL_BUFFER_KHR: Self = Self::STORAGE_TEXEL_BUFFER;
1344    pub const STORAGE_TEXEL_BUFFER_ATOMIC: Self = Self(0b10_0000);
1345    pub const STORAGE_TEXEL_BUFFER_ATOMIC_KHR: Self = Self::STORAGE_TEXEL_BUFFER_ATOMIC;
1346    pub const VERTEX_BUFFER: Self = Self(0b100_0000);
1347    pub const VERTEX_BUFFER_KHR: Self = Self::VERTEX_BUFFER;
1348    pub const COLOR_ATTACHMENT: Self = Self(0b1000_0000);
1349    pub const COLOR_ATTACHMENT_KHR: Self = Self::COLOR_ATTACHMENT;
1350    pub const COLOR_ATTACHMENT_BLEND: Self = Self(0b1_0000_0000);
1351    pub const COLOR_ATTACHMENT_BLEND_KHR: Self = Self::COLOR_ATTACHMENT_BLEND;
1352    pub const DEPTH_STENCIL_ATTACHMENT: Self = Self(0b10_0000_0000);
1353    pub const DEPTH_STENCIL_ATTACHMENT_KHR: Self = Self::DEPTH_STENCIL_ATTACHMENT;
1354    pub const BLIT_SRC: Self = Self(0b100_0000_0000);
1355    pub const BLIT_SRC_KHR: Self = Self::BLIT_SRC;
1356    pub const BLIT_DST: Self = Self(0b1000_0000_0000);
1357    pub const BLIT_DST_KHR: Self = Self::BLIT_DST;
1358    pub const SAMPLED_IMAGE_FILTER_LINEAR: Self = Self(0b1_0000_0000_0000);
1359    pub const SAMPLED_IMAGE_FILTER_LINEAR_KHR: Self = Self::SAMPLED_IMAGE_FILTER_LINEAR;
1360    pub const SAMPLED_IMAGE_FILTER_CUBIC: Self = Self(0b10_0000_0000_0000);
1361    pub const SAMPLED_IMAGE_FILTER_CUBIC_EXT: Self = Self::SAMPLED_IMAGE_FILTER_CUBIC;
1362    pub const TRANSFER_SRC: Self = Self(0b100_0000_0000_0000);
1363    pub const TRANSFER_SRC_KHR: Self = Self::TRANSFER_SRC;
1364    pub const TRANSFER_DST: Self = Self(0b1000_0000_0000_0000);
1365    pub const TRANSFER_DST_KHR: Self = Self::TRANSFER_DST;
1366    pub const SAMPLED_IMAGE_FILTER_MINMAX: Self = Self(0b1_0000_0000_0000_0000);
1367    pub const SAMPLED_IMAGE_FILTER_MINMAX_KHR: Self = Self::SAMPLED_IMAGE_FILTER_MINMAX;
1368    pub const MIDPOINT_CHROMA_SAMPLES: Self = Self(0b10_0000_0000_0000_0000);
1369    pub const MIDPOINT_CHROMA_SAMPLES_KHR: Self = Self::MIDPOINT_CHROMA_SAMPLES;
1370    pub const SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER: Self = Self(0b100_0000_0000_0000_0000);
1371    pub const SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_KHR: Self =
1372        Self::SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER;
1373    pub const SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER: Self =
1374        Self(0b1000_0000_0000_0000_0000);
1375    pub const SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_KHR: Self =
1376        Self::SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER;
1377    pub const SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT: Self =
1378        Self(0b1_0000_0000_0000_0000_0000);
1379    pub const SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_KHR: Self =
1380        Self::SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT;
1381    pub const SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE: Self =
1382        Self(0b10_0000_0000_0000_0000_0000);
1383    pub const SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_KHR: Self =
1384        Self::SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE;
1385    pub const DISJOINT: Self = Self(0b100_0000_0000_0000_0000_0000);
1386    pub const DISJOINT_KHR: Self = Self::DISJOINT;
1387    pub const COSITED_CHROMA_SAMPLES: Self = Self(0b1000_0000_0000_0000_0000_0000);
1388    pub const COSITED_CHROMA_SAMPLES_KHR: Self = Self::COSITED_CHROMA_SAMPLES;
1389    pub const STORAGE_READ_WITHOUT_FORMAT: Self = Self(0b1000_0000_0000_0000_0000_0000_0000_0000);
1390    pub const STORAGE_READ_WITHOUT_FORMAT_KHR: Self = Self::STORAGE_READ_WITHOUT_FORMAT;
1391    pub const STORAGE_WRITE_WITHOUT_FORMAT: Self =
1392        Self(0b1_0000_0000_0000_0000_0000_0000_0000_0000);
1393    pub const STORAGE_WRITE_WITHOUT_FORMAT_KHR: Self = Self::STORAGE_WRITE_WITHOUT_FORMAT;
1394    pub const SAMPLED_IMAGE_DEPTH_COMPARISON: Self =
1395        Self(0b10_0000_0000_0000_0000_0000_0000_0000_0000);
1396    pub const SAMPLED_IMAGE_DEPTH_COMPARISON_KHR: Self = Self::SAMPLED_IMAGE_DEPTH_COMPARISON;
1397}
1398#[repr(transparent)]
1399#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1400#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkRenderingFlagBits.html>"]
1401pub struct RenderingFlags(pub(crate) Flags);
1402vk_bitflags_wrapped!(RenderingFlags, Flags);
1403impl RenderingFlags {
1404    pub const CONTENTS_SECONDARY_COMMAND_BUFFERS: Self = Self(0b1);
1405    pub const CONTENTS_SECONDARY_COMMAND_BUFFERS_KHR: Self =
1406        Self::CONTENTS_SECONDARY_COMMAND_BUFFERS;
1407    pub const SUSPENDING: Self = Self(0b10);
1408    pub const SUSPENDING_KHR: Self = Self::SUSPENDING;
1409    pub const RESUMING: Self = Self(0b100);
1410    pub const RESUMING_KHR: Self = Self::RESUMING;
1411}
1412#[repr(transparent)]
1413#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1414#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoEncodeH265CapabilityFlagBitsEXT.html>"]
1415pub struct VideoEncodeH265CapabilityFlagsEXT(pub(crate) Flags);
1416vk_bitflags_wrapped!(VideoEncodeH265CapabilityFlagsEXT, Flags);
1417impl VideoEncodeH265CapabilityFlagsEXT {
1418    pub const SEPARATE_COLOUR_PLANE: Self = Self(0b1);
1419    pub const SCALING_LISTS: Self = Self(0b10);
1420    pub const SAMPLE_ADAPTIVE_OFFSET_ENABLED: Self = Self(0b100);
1421    pub const PCM_ENABLE: Self = Self(0b1000);
1422    pub const SPS_TEMPORAL_MVP_ENABLED: Self = Self(0b1_0000);
1423    pub const HRD_COMPLIANCE: Self = Self(0b10_0000);
1424    pub const INIT_QP_MINUS26: Self = Self(0b100_0000);
1425    pub const LOG2_PARALLEL_MERGE_LEVEL_MINUS2: Self = Self(0b1000_0000);
1426    pub const SIGN_DATA_HIDING_ENABLED: Self = Self(0b1_0000_0000);
1427    pub const TRANSFORM_SKIP_ENABLED: Self = Self(0b10_0000_0000);
1428    pub const PPS_SLICE_CHROMA_QP_OFFSETS_PRESENT: Self = Self(0b100_0000_0000);
1429    pub const WEIGHTED_PRED: Self = Self(0b1000_0000_0000);
1430    pub const WEIGHTED_BIPRED: Self = Self(0b1_0000_0000_0000);
1431    pub const WEIGHTED_PRED_NO_TABLE: Self = Self(0b10_0000_0000_0000);
1432    pub const TRANSQUANT_BYPASS_ENABLED: Self = Self(0b100_0000_0000_0000);
1433    pub const ENTROPY_CODING_SYNC_ENABLED: Self = Self(0b1000_0000_0000_0000);
1434    pub const DEBLOCKING_FILTER_OVERRIDE_ENABLED: Self = Self(0b1_0000_0000_0000_0000);
1435    pub const MULTIPLE_TILE_PER_FRAME: Self = Self(0b10_0000_0000_0000_0000);
1436    pub const MULTIPLE_SLICE_PER_TILE: Self = Self(0b100_0000_0000_0000_0000);
1437    pub const MULTIPLE_TILE_PER_SLICE: Self = Self(0b1000_0000_0000_0000_0000);
1438    pub const SLICE_SEGMENT_CTB_COUNT: Self = Self(0b1_0000_0000_0000_0000_0000);
1439    pub const ROW_UNALIGNED_SLICE_SEGMENT: Self = Self(0b10_0000_0000_0000_0000_0000);
1440    pub const DEPENDENT_SLICE_SEGMENT: Self = Self(0b100_0000_0000_0000_0000_0000);
1441    pub const DIFFERENT_SLICE_TYPE: Self = Self(0b1000_0000_0000_0000_0000_0000);
1442}
1443#[repr(transparent)]
1444#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1445#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoEncodeH265InputModeFlagBitsEXT.html>"]
1446pub struct VideoEncodeH265InputModeFlagsEXT(pub(crate) Flags);
1447vk_bitflags_wrapped!(VideoEncodeH265InputModeFlagsEXT, Flags);
1448impl VideoEncodeH265InputModeFlagsEXT {
1449    pub const FRAME: Self = Self(0b1);
1450    pub const SLICE_SEGMENT: Self = Self(0b10);
1451    pub const NON_VCL: Self = Self(0b100);
1452}
1453#[repr(transparent)]
1454#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1455#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoEncodeH265OutputModeFlagBitsEXT.html>"]
1456pub struct VideoEncodeH265OutputModeFlagsEXT(pub(crate) Flags);
1457vk_bitflags_wrapped!(VideoEncodeH265OutputModeFlagsEXT, Flags);
1458impl VideoEncodeH265OutputModeFlagsEXT {
1459    pub const FRAME: Self = Self(0b1);
1460    pub const SLICE_SEGMENT: Self = Self(0b10);
1461    pub const NON_VCL: Self = Self(0b100);
1462}
1463#[repr(transparent)]
1464#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1465#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoEncodeH265RateControlStructureFlagBitsEXT.html>"]
1466pub struct VideoEncodeH265RateControlStructureFlagsEXT(pub(crate) Flags);
1467vk_bitflags_wrapped!(VideoEncodeH265RateControlStructureFlagsEXT, Flags);
1468impl VideoEncodeH265RateControlStructureFlagsEXT {
1469    pub const UNKNOWN: Self = Self(0);
1470    pub const FLAT: Self = Self(0b1);
1471    pub const DYADIC: Self = Self(0b10);
1472}
1473#[repr(transparent)]
1474#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1475#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoEncodeH265CtbSizeFlagBitsEXT.html>"]
1476pub struct VideoEncodeH265CtbSizeFlagsEXT(pub(crate) Flags);
1477vk_bitflags_wrapped!(VideoEncodeH265CtbSizeFlagsEXT, Flags);
1478impl VideoEncodeH265CtbSizeFlagsEXT {
1479    pub const TYPE_16: Self = Self(0b1);
1480    pub const TYPE_32: Self = Self(0b10);
1481    pub const TYPE_64: Self = Self(0b100);
1482}
1483#[repr(transparent)]
1484#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1485#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkVideoEncodeH265TransformBlockSizeFlagBitsEXT.html>"]
1486pub struct VideoEncodeH265TransformBlockSizeFlagsEXT(pub(crate) Flags);
1487vk_bitflags_wrapped!(VideoEncodeH265TransformBlockSizeFlagsEXT, Flags);
1488impl VideoEncodeH265TransformBlockSizeFlagsEXT {
1489    pub const TYPE_4: Self = Self(0b1);
1490    pub const TYPE_8: Self = Self(0b10);
1491    pub const TYPE_16: Self = Self(0b100);
1492    pub const TYPE_32: Self = Self(0b1000);
1493}
1494#[repr(transparent)]
1495#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
1496#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VkInstanceCreateFlagBits.html>"]
1497pub struct InstanceCreateFlags(pub(crate) Flags);
1498vk_bitflags_wrapped!(InstanceCreateFlags, Flags);
1499impl InstanceCreateFlags {}