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

use utils::vk_traits::*;

/// Wrapper for [VkPerformanceCounterScopeKHR](https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VkPerformanceCounterScopeKHR.html).
#[repr(i32)]
#[derive(Debug, PartialEq, Copy, Clone)]
pub enum VkPerformanceCounterScope {
    CommandBuffer = 0,
    RenderPass = 1,
    Command = 2,
}

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

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

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

impl Default for VkPerformanceCounterScope {
    fn default() -> VkPerformanceCounterScope {
        VkPerformanceCounterScope::CommandBuffer
    }
}