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

use utils::vk_traits::*;

/// Wrapper for [VkPipelineDepthStencilStateCreateFlagBits](https://www.khronos.org/registry/vulkan/specs/1.1-extensions/man/html/VkPipelineDepthStencilStateCreateFlagBits.html)
#[derive(Debug, Clone, Copy)]
pub struct VkPipelineDepthStencilStateCreateFlags {
    
}

#[doc(hidden)]
pub type RawVkPipelineDepthStencilStateCreateFlags = u32;

impl VkWrappedType<RawVkPipelineDepthStencilStateCreateFlags> for VkPipelineDepthStencilStateCreateFlags {
    fn vk_to_raw(src: &VkPipelineDepthStencilStateCreateFlags, dst: &mut RawVkPipelineDepthStencilStateCreateFlags) {
        *dst = 0;
    }
}

impl VkRawType<VkPipelineDepthStencilStateCreateFlags> for RawVkPipelineDepthStencilStateCreateFlags {
    fn vk_to_wrapped(src: &RawVkPipelineDepthStencilStateCreateFlags) -> VkPipelineDepthStencilStateCreateFlags {
        VkPipelineDepthStencilStateCreateFlags {
            
        }
    }
}

impl Default for VkPipelineDepthStencilStateCreateFlags {
    fn default() -> VkPipelineDepthStencilStateCreateFlags {
        VkPipelineDepthStencilStateCreateFlags {
            
        }
    }
}

impl VkPipelineDepthStencilStateCreateFlags {
    
    pub fn none() -> VkPipelineDepthStencilStateCreateFlags {
        VkPipelineDepthStencilStateCreateFlags {
            
        }
    }
    
    pub fn all() -> VkPipelineDepthStencilStateCreateFlags {
        VkPipelineDepthStencilStateCreateFlags {
            
        }
    }
}

#[macro_export]
macro_rules! VkPipelineDepthStencilStateCreateFlags {
    ( $( $x:ident ),* ) => {
        VkPipelineDepthStencilStateCreateFlags {
            $($x: true,)*
            ..VkPipelineDepthStencilStateCreateFlags::none()
        }
    }
}

impl VkPipelineDepthStencilStateCreateFlags {
    
    pub fn to_u32(&self) -> u32 {
        0
    }
}