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
//! <https://registry.khronos.org/vulkan/specs/latest/man/html/VK_EXT_display_control.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_EXT_display_control";

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/VkDisplayPowerInfoEXT.html>
    #[repr(C)]
    #[derive(Copy, Clone)]
    #[must_use]
    pub struct DisplayPowerInfoEXT<'a> {
        pub s_type: StructureType,
        pub p_next: *const c_void,
        pub power_state: DisplayPowerStateEXT,
        pub _marker: PhantomData<&'a ()>,
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    unsafe impl Extends<SwapchainCreateInfoKHR<'_>> for SwapchainCounterCreateInfoEXT<'_> {}

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

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

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

    impl DisplayPowerStateEXT {
        #[inline]
        pub const fn from_raw(x: i32) -> Self {
            Self(x)
        }
        #[inline]
        pub const fn as_raw(self) -> i32 {
            self.0
        }

        pub const OFF_EXT: Self = Self(0);
        pub const SUSPEND_EXT: Self = Self(1);
        pub const ON_EXT: Self = Self(2);
    }

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

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

    impl DeviceEventTypeEXT {
        #[inline]
        pub const fn from_raw(x: i32) -> Self {
            Self(x)
        }
        #[inline]
        pub const fn as_raw(self) -> i32 {
            self.0
        }

        pub const DISPLAY_HOTPLUG_EXT: Self = Self(0);
    }

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

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

    impl DisplayEventTypeEXT {
        #[inline]
        pub const fn from_raw(x: i32) -> Self {
            Self(x)
        }
        #[inline]
        pub const fn as_raw(self) -> i32 {
            self.0
        }

        pub const FIRST_PIXEL_OUT_EXT: Self = Self(0);
    }

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

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/vkDisplayPowerControlEXT.html>
    pub type PFN_vkDisplayPowerControlEXT = unsafe extern "system" fn(
        device: Device,
        display: DisplayKHR,
        p_display_power_info: *const DisplayPowerInfoEXT<'_>,
    ) -> vk::Result;
    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/vkRegisterDeviceEventEXT.html>
    pub type PFN_vkRegisterDeviceEventEXT = unsafe extern "system" fn(
        device: Device,
        p_device_event_info: *const DeviceEventInfoEXT<'_>,
        p_allocator: *const AllocationCallbacks<'_>,
        p_fence: *mut Fence,
    ) -> vk::Result;
    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/vkRegisterDisplayEventEXT.html>
    pub type PFN_vkRegisterDisplayEventEXT = unsafe extern "system" fn(
        device: Device,
        display: DisplayKHR,
        p_display_event_info: *const DisplayEventInfoEXT<'_>,
        p_allocator: *const AllocationCallbacks<'_>,
        p_fence: *mut Fence,
    ) -> vk::Result;
    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/vkGetSwapchainCounterEXT.html>
    pub type PFN_vkGetSwapchainCounterEXT = unsafe extern "system" fn(
        device: Device,
        swapchain: SwapchainKHR,
        counter: SurfaceCounterFlagBitsEXT,
        p_counter_value: *mut u64,
    ) -> vk::Result;
}

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

    pub type VkDisplayPowerInfoEXT = DisplayPowerInfoEXT<'static>;
    pub type VkDeviceEventInfoEXT = DeviceEventInfoEXT<'static>;
    pub type VkDisplayEventInfoEXT = DisplayEventInfoEXT<'static>;
    pub type VkSwapchainCounterCreateInfoEXT = SwapchainCounterCreateInfoEXT<'static>;
    pub type VkDisplayPowerStateEXT = DisplayPowerStateEXT;
    pub type VkDeviceEventTypeEXT = DeviceEventTypeEXT;
    pub type VkDisplayEventTypeEXT = DisplayEventTypeEXT;
    impl DisplayPowerInfoEXT<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkDisplayPowerInfoEXT {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl DeviceEventInfoEXT<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkDeviceEventInfoEXT {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl DisplayEventInfoEXT<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkDisplayEventInfoEXT {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl SwapchainCounterCreateInfoEXT<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkSwapchainCounterCreateInfoEXT {
            unsafe { core::mem::transmute(self) }
        }
    }
}

pub struct DeviceFn {
    display_power_control: PFN_vkDisplayPowerControlEXT,
    register_device_event: PFN_vkRegisterDeviceEventEXT,
    register_display_event: PFN_vkRegisterDisplayEventEXT,
    get_swapchain_counter: PFN_vkGetSwapchainCounterEXT,
}

impl LoadDeviceFn for DeviceFn {
    unsafe fn load_with(
        load: impl Fn(&CStr) -> Option<PFN_vkVoidFunction>,
    ) -> core::result::Result<Self, MissingEntryPointError> {
        unsafe {
            Ok(Self {
                display_power_control: transmute(
                    load(c"vkDisplayPowerControlEXT").ok_or(MissingEntryPointError)?,
                ),
                register_device_event: transmute(
                    load(c"vkRegisterDeviceEventEXT").ok_or(MissingEntryPointError)?,
                ),
                register_display_event: transmute(
                    load(c"vkRegisterDisplayEventEXT").ok_or(MissingEntryPointError)?,
                ),
                get_swapchain_counter: transmute(
                    load(c"vkGetSwapchainCounterEXT").ok_or(MissingEntryPointError)?,
                ),
            })
        }
    }
}

impl DeviceFn {
    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/vkDisplayPowerControlEXT.html>
    #[inline]
    pub unsafe fn display_power_control(
        &self,
        device: Device,
        display: DisplayKHR,
        display_power_info: &DisplayPowerInfoEXT<'_>,
    ) -> crate::Result<()> {
        unsafe {
            let result = (self.display_power_control)(device, display, display_power_info);

            match result {
                VkResult::SUCCESS => Ok(()),
                err => Err(err),
            }
        }
    }

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/vkRegisterDeviceEventEXT.html>
    #[inline]
    pub unsafe fn register_device_event(
        &self,
        device: Device,
        device_event_info: &DeviceEventInfoEXT<'_>,
        allocator: Option<&AllocationCallbacks<'_>>,
    ) -> crate::Result<Fence> {
        unsafe {
            let mut fence = core::mem::MaybeUninit::uninit();
            let result = (self.register_device_event)(
                device,
                device_event_info,
                allocator.to_raw_ptr(),
                fence.as_mut_ptr(),
            );

            match result {
                VkResult::SUCCESS => Ok(fence.assume_init()),
                err => Err(err),
            }
        }
    }

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/vkRegisterDisplayEventEXT.html>
    #[inline]
    pub unsafe fn register_display_event(
        &self,
        device: Device,
        display: DisplayKHR,
        display_event_info: &DisplayEventInfoEXT<'_>,
        allocator: Option<&AllocationCallbacks<'_>>,
    ) -> crate::Result<Fence> {
        unsafe {
            let mut fence = core::mem::MaybeUninit::uninit();
            let result = (self.register_display_event)(
                device,
                display,
                display_event_info,
                allocator.to_raw_ptr(),
                fence.as_mut_ptr(),
            );

            match result {
                VkResult::SUCCESS => Ok(fence.assume_init()),
                err => Err(err),
            }
        }
    }

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/vkGetSwapchainCounterEXT.html>
    #[inline]
    pub unsafe fn get_swapchain_counter(
        &self,
        device: Device,
        swapchain: SwapchainKHR,
        counter: SurfaceCounterFlagBitsEXT,
    ) -> crate::Result<u64> {
        unsafe {
            let mut counter_value = core::mem::MaybeUninit::uninit();
            let result = (self.get_swapchain_counter)(
                device,
                swapchain,
                counter,
                counter_value.as_mut_ptr(),
            );

            match result {
                VkResult::SUCCESS => Ok(counter_value.assume_init()),
                err => Err(err),
            }
        }
    }
}