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
// Generated by `scripts/generate.js`

use utils::vk_traits::*;

/// Wrapper for [VkCommandBufferLevel](https://www.khronos.org/registry/vulkan/specs/1.1-extensions/man/html/VkCommandBufferLevel.html).
#[repr(i32)]
#[derive(Debug, PartialEq, Copy, Clone)]
pub enum VkCommandBufferLevel {
    Primary = 0,
    Secondary = 1,
}

#[doc(hidden)]
pub type RawVkCommandBufferLevel = i32;

impl VkWrappedType<RawVkCommandBufferLevel> for VkCommandBufferLevel {
    fn vk_to_raw(src: &VkCommandBufferLevel, dst: &mut RawVkCommandBufferLevel) {
        *dst = *src as i32
    }
}

impl VkRawType<VkCommandBufferLevel> for RawVkCommandBufferLevel {
    fn vk_to_wrapped(src: &RawVkCommandBufferLevel) -> VkCommandBufferLevel {
        unsafe {
            *((src as *const i32) as *const VkCommandBufferLevel)
        }
    }
}

impl Default for VkCommandBufferLevel {
    fn default() -> VkCommandBufferLevel {
        VkCommandBufferLevel::Primary
    }
}