kazan 0.3.9+1.4.359

Vulkan bindings for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
//! <https://registry.khronos.org/vulkan/specs/latest/man/html/VK_KHR_maintenance10.html>
#![allow(unused_imports)]
use crate::{vk::Result as VkResult, vk::*, *};
use core::ffi::{CStr, c_char, c_int, c_void};
use core::mem::transmute;
use core::ptr;

pub const EXTENSION_NAME: &CStr = c"VK_KHR_maintenance10";

pub(super) mod defs {
    #![allow(non_camel_case_types, unused_imports)]
    use crate::{vk::*, *};
    use core::ffi::{CStr, c_char, c_int, c_void};
    use core::fmt;
    use core::marker::PhantomData;
    use core::ptr;

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/VkPhysicalDeviceMaintenance10PropertiesKHR.html>
    #[repr(C)]
    #[derive(Copy, Clone)]
    #[must_use]
    pub struct PhysicalDeviceMaintenance10PropertiesKHR<'a> {
        pub s_type: StructureType,
        pub p_next: *mut c_void,
        pub rgba4_opaque_black_swizzled: Bool32,
        pub resolve_srgb_format_applies_transfer_function: Bool32,
        pub resolve_srgb_format_supports_transfer_function_control: Bool32,
        pub _marker: PhantomData<&'a ()>,
    }

    #[cfg(feature = "debug")]
    impl fmt::Debug for PhysicalDeviceMaintenance10PropertiesKHR<'_> {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            f.debug_struct("PhysicalDeviceMaintenance10PropertiesKHR")
                .field("s_type", &self.s_type)
                .field("p_next", &self.p_next)
                .field(
                    "rgba4_opaque_black_swizzled",
                    &self.rgba4_opaque_black_swizzled,
                )
                .field(
                    "resolve_srgb_format_applies_transfer_function",
                    &self.resolve_srgb_format_applies_transfer_function,
                )
                .field(
                    "resolve_srgb_format_supports_transfer_function_control",
                    &self.resolve_srgb_format_supports_transfer_function_control,
                )
                .finish()
        }
    }

    unsafe impl<'a> TaggedStructure<'a> for PhysicalDeviceMaintenance10PropertiesKHR<'a> {
        const STRUCTURE_TYPE: StructureType =
            StructureType::PHYSICAL_DEVICE_MAINTENANCE_10_PROPERTIES_KHR;
    }

    unsafe impl Extends<PhysicalDeviceProperties2<'_>>
        for PhysicalDeviceMaintenance10PropertiesKHR<'_>
    {
    }

    impl Default for PhysicalDeviceMaintenance10PropertiesKHR<'_> {
        fn default() -> Self {
            Self {
                s_type: Self::STRUCTURE_TYPE,
                p_next: ptr::null_mut(),
                rgba4_opaque_black_swizzled: Default::default(),
                resolve_srgb_format_applies_transfer_function: Default::default(),
                resolve_srgb_format_supports_transfer_function_control: Default::default(),
                _marker: PhantomData,
            }
        }
    }

    impl<'a> PhysicalDeviceMaintenance10PropertiesKHR<'a> {
        #[inline]
        pub fn rgba4_opaque_black_swizzled(mut self, rgba4_opaque_black_swizzled: bool) -> Self {
            self.rgba4_opaque_black_swizzled = rgba4_opaque_black_swizzled.into();
            self
        }

        #[inline]
        pub fn resolve_srgb_format_applies_transfer_function(
            mut self,
            resolve_srgb_format_applies_transfer_function: bool,
        ) -> Self {
            self.resolve_srgb_format_applies_transfer_function =
                resolve_srgb_format_applies_transfer_function.into();
            self
        }

        #[inline]
        pub fn resolve_srgb_format_supports_transfer_function_control(
            mut self,
            resolve_srgb_format_supports_transfer_function_control: bool,
        ) -> Self {
            self.resolve_srgb_format_supports_transfer_function_control =
                resolve_srgb_format_supports_transfer_function_control.into();
            self
        }
    }

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/VkPhysicalDeviceMaintenance10FeaturesKHR.html>
    #[repr(C)]
    #[derive(Copy, Clone)]
    #[must_use]
    pub struct PhysicalDeviceMaintenance10FeaturesKHR<'a> {
        pub s_type: StructureType,
        pub p_next: *mut c_void,
        pub maintenance10: Bool32,
        pub _marker: PhantomData<&'a ()>,
    }

    #[cfg(feature = "debug")]
    impl fmt::Debug for PhysicalDeviceMaintenance10FeaturesKHR<'_> {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            f.debug_struct("PhysicalDeviceMaintenance10FeaturesKHR")
                .field("s_type", &self.s_type)
                .field("p_next", &self.p_next)
                .field("maintenance10", &self.maintenance10)
                .finish()
        }
    }

    unsafe impl<'a> TaggedStructure<'a> for PhysicalDeviceMaintenance10FeaturesKHR<'a> {
        const STRUCTURE_TYPE: StructureType =
            StructureType::PHYSICAL_DEVICE_MAINTENANCE_10_FEATURES_KHR;
    }

    unsafe impl Extends<PhysicalDeviceFeatures2<'_>> for PhysicalDeviceMaintenance10FeaturesKHR<'_> {}
    unsafe impl Extends<DeviceCreateInfo<'_>> for PhysicalDeviceMaintenance10FeaturesKHR<'_> {}

    impl Default for PhysicalDeviceMaintenance10FeaturesKHR<'_> {
        fn default() -> Self {
            Self {
                s_type: Self::STRUCTURE_TYPE,
                p_next: ptr::null_mut(),
                maintenance10: Default::default(),
                _marker: PhantomData,
            }
        }
    }

    impl<'a> PhysicalDeviceMaintenance10FeaturesKHR<'a> {
        #[inline]
        pub fn maintenance10(mut self, maintenance10: bool) -> Self {
            self.maintenance10 = maintenance10.into();
            self
        }
    }

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/VkRenderingEndInfoKHR.html>
    #[repr(C)]
    #[derive(Copy, Clone)]
    #[must_use]
    pub struct RenderingEndInfoKHR<'a> {
        pub s_type: StructureType,
        pub p_next: *const c_void,
        pub _marker: PhantomData<&'a ()>,
    }

    #[cfg(feature = "debug")]
    impl fmt::Debug for RenderingEndInfoKHR<'_> {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            f.debug_struct("RenderingEndInfoKHR")
                .field("s_type", &self.s_type)
                .field("p_next", &self.p_next)
                .finish()
        }
    }

    unsafe impl<'a> TaggedStructure<'a> for RenderingEndInfoKHR<'a> {
        const STRUCTURE_TYPE: StructureType = StructureType::RENDERING_END_INFO_KHR;
    }

    impl Default for RenderingEndInfoKHR<'_> {
        fn default() -> Self {
            Self {
                s_type: Self::STRUCTURE_TYPE,
                p_next: ptr::null(),
                _marker: PhantomData,
            }
        }
    }

    impl<'a> RenderingEndInfoKHR<'a> {}

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/VkRenderingAttachmentFlagsInfoKHR.html>
    #[repr(C)]
    #[derive(Copy, Clone)]
    #[must_use]
    pub struct RenderingAttachmentFlagsInfoKHR<'a> {
        pub s_type: StructureType,
        pub p_next: *const c_void,
        pub flags: RenderingAttachmentFlagsKHR,
        pub _marker: PhantomData<&'a ()>,
    }

    #[cfg(feature = "debug")]
    impl fmt::Debug for RenderingAttachmentFlagsInfoKHR<'_> {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            f.debug_struct("RenderingAttachmentFlagsInfoKHR")
                .field("s_type", &self.s_type)
                .field("p_next", &self.p_next)
                .field("flags", &self.flags)
                .finish()
        }
    }

    unsafe impl<'a> TaggedStructure<'a> for RenderingAttachmentFlagsInfoKHR<'a> {
        const STRUCTURE_TYPE: StructureType = StructureType::RENDERING_ATTACHMENT_FLAGS_INFO_KHR;
    }

    unsafe impl Extends<RenderingAttachmentInfo<'_>> for RenderingAttachmentFlagsInfoKHR<'_> {}

    impl Default for RenderingAttachmentFlagsInfoKHR<'_> {
        fn default() -> Self {
            Self {
                s_type: Self::STRUCTURE_TYPE,
                p_next: ptr::null(),
                flags: Default::default(),
                _marker: PhantomData,
            }
        }
    }

    impl<'a> RenderingAttachmentFlagsInfoKHR<'a> {
        #[inline]
        pub fn flags(mut self, flags: RenderingAttachmentFlagsKHR) -> Self {
            self.flags = flags;
            self
        }
    }

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/VkResolveImageModeInfoKHR.html>
    #[repr(C)]
    #[derive(Copy, Clone)]
    #[must_use]
    pub struct ResolveImageModeInfoKHR<'a> {
        pub s_type: StructureType,
        pub p_next: *const c_void,
        pub flags: ResolveImageFlagsKHR,
        pub resolve_mode: ResolveModeFlagBits,
        pub stencil_resolve_mode: ResolveModeFlagBits,
        pub _marker: PhantomData<&'a ()>,
    }

    #[cfg(feature = "debug")]
    impl fmt::Debug for ResolveImageModeInfoKHR<'_> {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            f.debug_struct("ResolveImageModeInfoKHR")
                .field("s_type", &self.s_type)
                .field("p_next", &self.p_next)
                .field("flags", &self.flags)
                .field("resolve_mode", &self.resolve_mode)
                .field("stencil_resolve_mode", &self.stencil_resolve_mode)
                .finish()
        }
    }

    unsafe impl<'a> TaggedStructure<'a> for ResolveImageModeInfoKHR<'a> {
        const STRUCTURE_TYPE: StructureType = StructureType::RESOLVE_IMAGE_MODE_INFO_KHR;
    }

    unsafe impl Extends<ResolveImageInfo2<'_>> for ResolveImageModeInfoKHR<'_> {}

    impl Default for ResolveImageModeInfoKHR<'_> {
        fn default() -> Self {
            Self {
                s_type: Self::STRUCTURE_TYPE,
                p_next: ptr::null(),
                flags: Default::default(),
                resolve_mode: Default::default(),
                stencil_resolve_mode: Default::default(),
                _marker: PhantomData,
            }
        }
    }

    impl<'a> ResolveImageModeInfoKHR<'a> {
        #[inline]
        pub fn flags(mut self, flags: ResolveImageFlagsKHR) -> Self {
            self.flags = flags;
            self
        }

        #[inline]
        pub fn resolve_mode(mut self, resolve_mode: ResolveModeFlagBits) -> Self {
            self.resolve_mode = resolve_mode;
            self
        }

        #[inline]
        pub fn stencil_resolve_mode(mut self, stencil_resolve_mode: ResolveModeFlagBits) -> Self {
            self.stencil_resolve_mode = stencil_resolve_mode;
            self
        }
    }

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/VkRenderingAttachmentFlagsKHR.html>
    #[repr(transparent)]
    #[derive(Copy, Clone, PartialEq, Eq, Hash)]
    pub struct RenderingAttachmentFlagsKHR(Flags);
    vk_bitflags_wrapped!(
        RenderingAttachmentFlagsKHR,
        Flags,
        RenderingAttachmentFlagBitsKHR
    );

    impl fmt::Debug for RenderingAttachmentFlagsKHR {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            const KNOWN: &[(Flags, &str)] = &[
                (
                    RenderingAttachmentFlagBitsKHR::INPUT_ATTACHMENT_FEEDBACK_KHR.0,
                    "INPUT_ATTACHMENT_FEEDBACK_KHR",
                ),
                (
                    RenderingAttachmentFlagBitsKHR::RESOLVE_SKIP_TRANSFER_FUNCTION_KHR.0,
                    "RESOLVE_SKIP_TRANSFER_FUNCTION_KHR",
                ),
                (
                    RenderingAttachmentFlagBitsKHR::RESOLVE_ENABLE_TRANSFER_FUNCTION_KHR.0,
                    "RESOLVE_ENABLE_TRANSFER_FUNCTION_KHR",
                ),
            ];
            debug_flags(f, KNOWN, self.0)
        }
    }

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/VkRenderingAttachmentFlagBitsKHR.html>
    #[repr(transparent)]
    #[derive(Copy, Clone, Default, PartialEq, Eq, Hash)]
    pub struct RenderingAttachmentFlagBitsKHR(u32);

    impl RenderingAttachmentFlagBitsKHR {
        // VK_KHR_maintenance10
        pub const INPUT_ATTACHMENT_FEEDBACK_KHR: Self = Self(1 << 0);
        pub const RESOLVE_SKIP_TRANSFER_FUNCTION_KHR: Self = Self(1 << 1);
        pub const RESOLVE_ENABLE_TRANSFER_FUNCTION_KHR: Self = Self(1 << 2);
    }

    impl fmt::Debug for RenderingAttachmentFlagBitsKHR {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            let name = match *self {
                Self::INPUT_ATTACHMENT_FEEDBACK_KHR => Some("INPUT_ATTACHMENT_FEEDBACK_KHR"),
                Self::RESOLVE_SKIP_TRANSFER_FUNCTION_KHR => {
                    Some("RESOLVE_SKIP_TRANSFER_FUNCTION_KHR")
                }
                Self::RESOLVE_ENABLE_TRANSFER_FUNCTION_KHR => {
                    Some("RESOLVE_ENABLE_TRANSFER_FUNCTION_KHR")
                }
                _ => None,
            };
            if let Some(name) = name {
                f.write_str(name)
            } else {
                self.0.fmt(f)
            }
        }
    }

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/VkResolveImageFlagsKHR.html>
    #[repr(transparent)]
    #[derive(Copy, Clone, PartialEq, Eq, Hash)]
    pub struct ResolveImageFlagsKHR(Flags);
    vk_bitflags_wrapped!(ResolveImageFlagsKHR, Flags, ResolveImageFlagBitsKHR);

    impl fmt::Debug for ResolveImageFlagsKHR {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            const KNOWN: &[(Flags, &str)] = &[
                (
                    ResolveImageFlagBitsKHR::SKIP_TRANSFER_FUNCTION_KHR.0,
                    "SKIP_TRANSFER_FUNCTION_KHR",
                ),
                (
                    ResolveImageFlagBitsKHR::ENABLE_TRANSFER_FUNCTION_KHR.0,
                    "ENABLE_TRANSFER_FUNCTION_KHR",
                ),
            ];
            debug_flags(f, KNOWN, self.0)
        }
    }

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/VkResolveImageFlagBitsKHR.html>
    #[repr(transparent)]
    #[derive(Copy, Clone, Default, PartialEq, Eq, Hash)]
    pub struct ResolveImageFlagBitsKHR(u32);

    impl ResolveImageFlagBitsKHR {
        // VK_KHR_maintenance10
        pub const SKIP_TRANSFER_FUNCTION_KHR: Self = Self(1 << 0);
        pub const ENABLE_TRANSFER_FUNCTION_KHR: Self = Self(1 << 1);
    }

    impl fmt::Debug for ResolveImageFlagBitsKHR {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            let name = match *self {
                Self::SKIP_TRANSFER_FUNCTION_KHR => Some("SKIP_TRANSFER_FUNCTION_KHR"),
                Self::ENABLE_TRANSFER_FUNCTION_KHR => Some("ENABLE_TRANSFER_FUNCTION_KHR"),
                _ => None,
            };
            if let Some(name) = name {
                f.write_str(name)
            } else {
                self.0.fmt(f)
            }
        }
    }

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/vkCmdEndRendering2KHR.html>
    pub type PFN_vkCmdEndRendering2KHR = unsafe extern "system" fn(
        command_buffer: CommandBuffer,
        p_rendering_end_info: *const RenderingEndInfoKHR<'_>,
    );
}

#[cfg(feature = "ffi")]
pub(super) mod ffi {
    #![allow(non_camel_case_types)]
    use super::defs::*;

    pub type VkPhysicalDeviceMaintenance10PropertiesKHR =
        PhysicalDeviceMaintenance10PropertiesKHR<'static>;
    pub type VkPhysicalDeviceMaintenance10FeaturesKHR =
        PhysicalDeviceMaintenance10FeaturesKHR<'static>;
    pub type VkRenderingEndInfoKHR = RenderingEndInfoKHR<'static>;
    pub type VkRenderingAttachmentFlagsInfoKHR = RenderingAttachmentFlagsInfoKHR<'static>;
    pub type VkResolveImageModeInfoKHR = ResolveImageModeInfoKHR<'static>;
    pub type VkRenderingAttachmentFlagsKHR = RenderingAttachmentFlagsKHR;
    pub type VkRenderingAttachmentFlagBitsKHR = RenderingAttachmentFlagBitsKHR;
    pub type VkResolveImageFlagsKHR = ResolveImageFlagsKHR;
    pub type VkResolveImageFlagBitsKHR = ResolveImageFlagBitsKHR;
    impl PhysicalDeviceMaintenance10PropertiesKHR<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkPhysicalDeviceMaintenance10PropertiesKHR {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl PhysicalDeviceMaintenance10FeaturesKHR<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkPhysicalDeviceMaintenance10FeaturesKHR {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl RenderingEndInfoKHR<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkRenderingEndInfoKHR {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl RenderingAttachmentFlagsInfoKHR<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkRenderingAttachmentFlagsInfoKHR {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl ResolveImageModeInfoKHR<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkResolveImageModeInfoKHR {
            unsafe { core::mem::transmute(self) }
        }
    }
}

pub struct DeviceFn {
    cmd_end_rendering2: PFN_vkCmdEndRendering2KHR,
}

impl LoadDeviceFn for DeviceFn {
    unsafe fn load_with(
        load: impl Fn(&CStr) -> Option<PFN_vkVoidFunction>,
    ) -> core::result::Result<Self, MissingEntryPointError> {
        unsafe {
            Ok(Self {
                cmd_end_rendering2: transmute(
                    load(c"vkCmdEndRendering2KHR").ok_or(MissingEntryPointError)?,
                ),
            })
        }
    }
}

impl DeviceFn {
    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/vkCmdEndRendering2KHR.html>
    #[inline]
    pub unsafe fn cmd_end_rendering2(
        &self,
        command_buffer: CommandBuffer,
        rendering_end_info: Option<&RenderingEndInfoKHR<'_>>,
    ) {
        unsafe { (self.cmd_end_rendering2)(command_buffer, rendering_end_info.to_raw_ptr()) }
    }
}