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

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/VkPhysicalDeviceVideoEncodeRgbConversionFeaturesVALVE.html>
    #[repr(C)]
    #[derive(Copy, Clone)]
    #[must_use]
    pub struct PhysicalDeviceVideoEncodeRgbConversionFeaturesVALVE<'a> {
        pub s_type: StructureType,
        pub p_next: *mut c_void,
        pub video_encode_rgb_conversion: Bool32,
        pub _marker: PhantomData<&'a ()>,
    }

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

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

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

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

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

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/VkVideoEncodeRgbConversionCapabilitiesVALVE.html>
    #[repr(C)]
    #[derive(Copy, Clone)]
    #[must_use]
    pub struct VideoEncodeRgbConversionCapabilitiesVALVE<'a> {
        pub s_type: StructureType,
        pub p_next: *mut c_void,
        pub rgb_models: VideoEncodeRgbModelConversionFlagsVALVE,
        pub rgb_ranges: VideoEncodeRgbRangeCompressionFlagsVALVE,
        pub x_chroma_offsets: VideoEncodeRgbChromaOffsetFlagsVALVE,
        pub y_chroma_offsets: VideoEncodeRgbChromaOffsetFlagsVALVE,
        pub _marker: PhantomData<&'a ()>,
    }

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

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

    unsafe impl Extends<VideoCapabilitiesKHR<'_>> for VideoEncodeRgbConversionCapabilitiesVALVE<'_> {}

    impl Default for VideoEncodeRgbConversionCapabilitiesVALVE<'_> {
        fn default() -> Self {
            Self {
                s_type: Self::STRUCTURE_TYPE,
                p_next: ptr::null_mut(),
                rgb_models: Default::default(),
                rgb_ranges: Default::default(),
                x_chroma_offsets: Default::default(),
                y_chroma_offsets: Default::default(),
                _marker: PhantomData,
            }
        }
    }

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

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

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

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

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

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

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

    unsafe impl Extends<VideoProfileInfoKHR<'_>> for VideoEncodeProfileRgbConversionInfoVALVE<'_> {}

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

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

    /// <https://registry.khronos.org/vulkan/specs/latest/man/html/VkVideoEncodeSessionRgbConversionCreateInfoVALVE.html>
    #[repr(C)]
    #[derive(Copy, Clone)]
    #[must_use]
    pub struct VideoEncodeSessionRgbConversionCreateInfoVALVE<'a> {
        pub s_type: StructureType,
        pub p_next: *const c_void,
        pub rgb_model: VideoEncodeRgbModelConversionFlagBitsVALVE,
        pub rgb_range: VideoEncodeRgbRangeCompressionFlagBitsVALVE,
        pub x_chroma_offset: VideoEncodeRgbChromaOffsetFlagBitsVALVE,
        pub y_chroma_offset: VideoEncodeRgbChromaOffsetFlagBitsVALVE,
        pub _marker: PhantomData<&'a ()>,
    }

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

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

    unsafe impl Extends<VideoSessionCreateInfoKHR<'_>>
        for VideoEncodeSessionRgbConversionCreateInfoVALVE<'_>
    {
    }

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

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

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

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

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

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

    impl fmt::Debug for VideoEncodeRgbModelConversionFlagsVALVE {
        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
            const KNOWN: &[(Flags, &str)] = &[
                (
                    VideoEncodeRgbModelConversionFlagBitsVALVE::RGB_IDENTITY_VALVE.0,
                    "RGB_IDENTITY_VALVE",
                ),
                (
                    VideoEncodeRgbModelConversionFlagBitsVALVE::YCBCR_IDENTITY_VALVE.0,
                    "YCBCR_IDENTITY_VALVE",
                ),
                (
                    VideoEncodeRgbModelConversionFlagBitsVALVE::YCBCR_709_VALVE.0,
                    "YCBCR_709_VALVE",
                ),
                (
                    VideoEncodeRgbModelConversionFlagBitsVALVE::YCBCR_601_VALVE.0,
                    "YCBCR_601_VALVE",
                ),
                (
                    VideoEncodeRgbModelConversionFlagBitsVALVE::YCBCR_2020_VALVE.0,
                    "YCBCR_2020_VALVE",
                ),
            ];
            debug_flags(f, KNOWN, self.0)
        }
    }

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

    impl VideoEncodeRgbModelConversionFlagBitsVALVE {
        pub const RGB_IDENTITY_VALVE: Self = Self(1 << 0);
        pub const YCBCR_IDENTITY_VALVE: Self = Self(1 << 1);
        pub const YCBCR_709_VALVE: Self = Self(1 << 2);
        pub const YCBCR_601_VALVE: Self = Self(1 << 3);
        pub const YCBCR_2020_VALVE: Self = Self(1 << 4);
    }

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

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

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

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

    impl VideoEncodeRgbRangeCompressionFlagBitsVALVE {
        pub const FULL_RANGE_VALVE: Self = Self(1 << 0);
        pub const NARROW_RANGE_VALVE: Self = Self(1 << 1);
    }

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

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

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

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

    impl VideoEncodeRgbChromaOffsetFlagBitsVALVE {
        pub const COSITED_EVEN_VALVE: Self = Self(1 << 0);
        pub const MIDPOINT_VALVE: Self = Self(1 << 1);
    }

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

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

    pub type VkPhysicalDeviceVideoEncodeRgbConversionFeaturesVALVE =
        PhysicalDeviceVideoEncodeRgbConversionFeaturesVALVE<'static>;
    pub type VkVideoEncodeRgbConversionCapabilitiesVALVE =
        VideoEncodeRgbConversionCapabilitiesVALVE<'static>;
    pub type VkVideoEncodeProfileRgbConversionInfoVALVE =
        VideoEncodeProfileRgbConversionInfoVALVE<'static>;
    pub type VkVideoEncodeSessionRgbConversionCreateInfoVALVE =
        VideoEncodeSessionRgbConversionCreateInfoVALVE<'static>;
    pub type VkVideoEncodeRgbModelConversionFlagsVALVE = VideoEncodeRgbModelConversionFlagsVALVE;
    pub type VkVideoEncodeRgbModelConversionFlagBitsVALVE =
        VideoEncodeRgbModelConversionFlagBitsVALVE;
    pub type VkVideoEncodeRgbRangeCompressionFlagsVALVE = VideoEncodeRgbRangeCompressionFlagsVALVE;
    pub type VkVideoEncodeRgbRangeCompressionFlagBitsVALVE =
        VideoEncodeRgbRangeCompressionFlagBitsVALVE;
    pub type VkVideoEncodeRgbChromaOffsetFlagsVALVE = VideoEncodeRgbChromaOffsetFlagsVALVE;
    pub type VkVideoEncodeRgbChromaOffsetFlagBitsVALVE = VideoEncodeRgbChromaOffsetFlagBitsVALVE;
    impl PhysicalDeviceVideoEncodeRgbConversionFeaturesVALVE<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(
            &self,
        ) -> &VkPhysicalDeviceVideoEncodeRgbConversionFeaturesVALVE {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl VideoEncodeRgbConversionCapabilitiesVALVE<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkVideoEncodeRgbConversionCapabilitiesVALVE {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl VideoEncodeProfileRgbConversionInfoVALVE<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(&self) -> &VkVideoEncodeProfileRgbConversionInfoVALVE {
            unsafe { core::mem::transmute(self) }
        }
    }
    impl VideoEncodeSessionRgbConversionCreateInfoVALVE<'_> {
        #[inline]
        pub unsafe fn drop_lifetime_for_ffi(
            &self,
        ) -> &VkVideoEncodeSessionRgbConversionCreateInfoVALVE {
            unsafe { core::mem::transmute(self) }
        }
    }
}