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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
//! <https://registry.khronos.org/vulkan/specs/latest/man/html/VK_ANDROID_external_memory_android_hardware_buffer.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_ANDROID_external_memory_android_hardware_buffer";

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;

    pub type AHardwareBuffer = *const c_void;

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

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

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

    unsafe impl Extends<MemoryAllocateInfo<'_>> for ImportAndroidHardwareBufferInfoANDROID<'_> {}

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

    impl<'a> ImportAndroidHardwareBufferInfoANDROID<'a> {
        #[inline]
        pub fn buffer(mut self, buffer: *mut AHardwareBuffer) -> Self {
            self.buffer = buffer;
            self
        }
    }

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

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

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

    unsafe impl Extends<ImageFormatProperties2<'_>> for AndroidHardwareBufferUsageANDROID<'_> {}

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

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

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

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

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

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

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

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

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

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

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

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

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

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/VkAndroidHardwareBufferFormatPropertiesANDROID.html>
    #[repr(C)]
    #[derive(Copy, Clone)]
    #[must_use]
    pub struct AndroidHardwareBufferFormatPropertiesANDROID<'a> {
        pub s_type: StructureType,
        pub p_next: *mut c_void,
        pub format: Format,
        pub external_format: u64,
        pub format_features: FormatFeatureFlags,
        pub sampler_ycbcr_conversion_components: ComponentMapping,
        pub suggested_ycbcr_model: SamplerYcbcrModelConversion,
        pub suggested_ycbcr_range: SamplerYcbcrRange,
        pub suggested_x_chroma_offset: ChromaLocation,
        pub suggested_y_chroma_offset: ChromaLocation,
        pub _marker: PhantomData<&'a ()>,
    }

    #[cfg(feature = "debug")]
    impl fmt::Debug for AndroidHardwareBufferFormatPropertiesANDROID<'_> {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            f.debug_struct("AndroidHardwareBufferFormatPropertiesANDROID")
                .field("s_type", &self.s_type)
                .field("p_next", &self.p_next)
                .field("format", &self.format)
                .field("external_format", &self.external_format)
                .field("format_features", &self.format_features)
                .field(
                    "sampler_ycbcr_conversion_components",
                    &self.sampler_ycbcr_conversion_components,
                )
                .field("suggested_ycbcr_model", &self.suggested_ycbcr_model)
                .field("suggested_ycbcr_range", &self.suggested_ycbcr_range)
                .field("suggested_x_chroma_offset", &self.suggested_x_chroma_offset)
                .field("suggested_y_chroma_offset", &self.suggested_y_chroma_offset)
                .finish()
        }
    }

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

    unsafe impl Extends<AndroidHardwareBufferPropertiesANDROID<'_>>
        for AndroidHardwareBufferFormatPropertiesANDROID<'_>
    {
    }

    impl Default for AndroidHardwareBufferFormatPropertiesANDROID<'_> {
        fn default() -> Self {
            Self {
                s_type: Self::STRUCTURE_TYPE,
                p_next: ptr::null_mut(),
                format: Default::default(),
                external_format: Default::default(),
                format_features: Default::default(),
                sampler_ycbcr_conversion_components: Default::default(),
                suggested_ycbcr_model: Default::default(),
                suggested_ycbcr_range: Default::default(),
                suggested_x_chroma_offset: Default::default(),
                suggested_y_chroma_offset: Default::default(),
                _marker: PhantomData,
            }
        }
    }

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

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

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

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

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

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

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

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

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

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

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

    unsafe impl Extends<ImageCreateInfo<'_>> for ExternalFormatANDROID<'_> {}
    unsafe impl Extends<SamplerYcbcrConversionCreateInfo<'_>> for ExternalFormatANDROID<'_> {}
    unsafe impl Extends<AttachmentDescription2<'_>> for ExternalFormatANDROID<'_> {}
    unsafe impl Extends<GraphicsPipelineCreateInfo<'_>> for ExternalFormatANDROID<'_> {}
    unsafe impl Extends<CommandBufferInheritanceInfo<'_>> for ExternalFormatANDROID<'_> {}

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

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

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/VkAndroidHardwareBufferFormatProperties2ANDROID.html>
    #[repr(C)]
    #[derive(Copy, Clone)]
    #[must_use]
    pub struct AndroidHardwareBufferFormatProperties2ANDROID<'a> {
        pub s_type: StructureType,
        pub p_next: *mut c_void,
        pub format: Format,
        pub external_format: u64,
        pub format_features: FormatFeatureFlags2,
        pub sampler_ycbcr_conversion_components: ComponentMapping,
        pub suggested_ycbcr_model: SamplerYcbcrModelConversion,
        pub suggested_ycbcr_range: SamplerYcbcrRange,
        pub suggested_x_chroma_offset: ChromaLocation,
        pub suggested_y_chroma_offset: ChromaLocation,
        pub _marker: PhantomData<&'a ()>,
    }

    #[cfg(feature = "debug")]
    impl fmt::Debug for AndroidHardwareBufferFormatProperties2ANDROID<'_> {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            f.debug_struct("AndroidHardwareBufferFormatProperties2ANDROID")
                .field("s_type", &self.s_type)
                .field("p_next", &self.p_next)
                .field("format", &self.format)
                .field("external_format", &self.external_format)
                .field("format_features", &self.format_features)
                .field(
                    "sampler_ycbcr_conversion_components",
                    &self.sampler_ycbcr_conversion_components,
                )
                .field("suggested_ycbcr_model", &self.suggested_ycbcr_model)
                .field("suggested_ycbcr_range", &self.suggested_ycbcr_range)
                .field("suggested_x_chroma_offset", &self.suggested_x_chroma_offset)
                .field("suggested_y_chroma_offset", &self.suggested_y_chroma_offset)
                .finish()
        }
    }

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

    unsafe impl Extends<AndroidHardwareBufferPropertiesANDROID<'_>>
        for AndroidHardwareBufferFormatProperties2ANDROID<'_>
    {
    }

    impl Default for AndroidHardwareBufferFormatProperties2ANDROID<'_> {
        fn default() -> Self {
            Self {
                s_type: Self::STRUCTURE_TYPE,
                p_next: ptr::null_mut(),
                format: Default::default(),
                external_format: Default::default(),
                format_features: Default::default(),
                sampler_ycbcr_conversion_components: Default::default(),
                suggested_ycbcr_model: Default::default(),
                suggested_ycbcr_range: Default::default(),
                suggested_x_chroma_offset: Default::default(),
                suggested_y_chroma_offset: Default::default(),
                _marker: PhantomData,
            }
        }
    }

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

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

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

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

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

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

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

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

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/vkGetAndroidHardwareBufferPropertiesANDROID.html>
    pub type PFN_vkGetAndroidHardwareBufferPropertiesANDROID =
        unsafe extern "system" fn(
            device: Device,
            buffer: *const AHardwareBuffer,
            p_properties: *mut AndroidHardwareBufferPropertiesANDROID<'_>,
        ) -> vk::Result;
    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/vkGetMemoryAndroidHardwareBufferANDROID.html>
    pub type PFN_vkGetMemoryAndroidHardwareBufferANDROID = unsafe extern "system" fn(
        device: Device,
        p_info: *const MemoryGetAndroidHardwareBufferInfoANDROID<'_>,
        p_buffer: *mut *mut AHardwareBuffer,
    )
        -> vk::Result;
}

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

    pub type VkImportAndroidHardwareBufferInfoANDROID =
        ImportAndroidHardwareBufferInfoANDROID<'static>;
    pub type VkAndroidHardwareBufferUsageANDROID = AndroidHardwareBufferUsageANDROID<'static>;
    pub type VkAndroidHardwareBufferPropertiesANDROID =
        AndroidHardwareBufferPropertiesANDROID<'static>;
    pub type VkMemoryGetAndroidHardwareBufferInfoANDROID =
        MemoryGetAndroidHardwareBufferInfoANDROID<'static>;
    pub type VkAndroidHardwareBufferFormatPropertiesANDROID =
        AndroidHardwareBufferFormatPropertiesANDROID<'static>;
    pub type VkExternalFormatANDROID = ExternalFormatANDROID<'static>;
    pub type VkAndroidHardwareBufferFormatProperties2ANDROID =
        AndroidHardwareBufferFormatProperties2ANDROID<'static>;
    impl ImportAndroidHardwareBufferInfoANDROID<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkImportAndroidHardwareBufferInfoANDROID {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl AndroidHardwareBufferUsageANDROID<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkAndroidHardwareBufferUsageANDROID {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl AndroidHardwareBufferPropertiesANDROID<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkAndroidHardwareBufferPropertiesANDROID {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl MemoryGetAndroidHardwareBufferInfoANDROID<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkMemoryGetAndroidHardwareBufferInfoANDROID {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl AndroidHardwareBufferFormatPropertiesANDROID<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(
            &self,
        ) -> &VkAndroidHardwareBufferFormatPropertiesANDROID {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl ExternalFormatANDROID<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkExternalFormatANDROID {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl AndroidHardwareBufferFormatProperties2ANDROID<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(
            &self,
        ) -> &VkAndroidHardwareBufferFormatProperties2ANDROID {
            unsafe { core::mem::transmute(self) }
        }
    }
}

pub struct DeviceFn {
    get_android_hardware_buffer_properties: PFN_vkGetAndroidHardwareBufferPropertiesANDROID,
    get_memory_android_hardware_buffer: PFN_vkGetMemoryAndroidHardwareBufferANDROID,
}

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

impl DeviceFn {
    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/vkGetAndroidHardwareBufferPropertiesANDROID.html>
    #[inline]
    pub unsafe fn get_android_hardware_buffer_properties(
        &self,
        device: Device,
        buffer: *const AHardwareBuffer,
        properties: &mut AndroidHardwareBufferPropertiesANDROID<'_>,
    ) -> crate::Result<()> {
        unsafe {
            let result = (self.get_android_hardware_buffer_properties)(device, buffer, properties);

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

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/vkGetMemoryAndroidHardwareBufferANDROID.html>
    #[inline]
    pub unsafe fn get_memory_android_hardware_buffer(
        &self,
        device: Device,
        info: &MemoryGetAndroidHardwareBufferInfoANDROID<'_>,
    ) -> crate::Result<*mut AHardwareBuffer> {
        unsafe {
            let mut buffer = core::mem::MaybeUninit::uninit();
            let result =
                (self.get_memory_android_hardware_buffer)(device, info, buffer.as_mut_ptr());

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