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

use utils::vk_traits::*;

pub type RawVkSparseImageFormatFlags = u32;

#[derive(Debug, Clone, Copy)]
pub struct VkSparseImageFormatFlags {
    pub single_miptail: bool,
    pub aligned_mip_size: bool,
    pub nonstandard_block_size: bool,
}

impl VkRawType<VkSparseImageFormatFlags> for RawVkSparseImageFormatFlags {
    fn vk_to_wrapped(src: &RawVkSparseImageFormatFlags) -> VkSparseImageFormatFlags {
        VkSparseImageFormatFlags {
            single_miptail: (src & 0x00000001) != 0,
            aligned_mip_size: (src & 0x00000002) != 0,
            nonstandard_block_size: (src & 0x00000004) != 0,
        }
    }
}

impl VkWrappedType<RawVkSparseImageFormatFlags> for VkSparseImageFormatFlags {
    fn vk_to_raw(src: &VkSparseImageFormatFlags, dst: &mut RawVkSparseImageFormatFlags) {
        *dst = 0;
        if src.single_miptail { *dst |= 0x00000001; }
        if src.aligned_mip_size { *dst |= 0x00000002; }
        if src.nonstandard_block_size { *dst |= 0x00000004; }
    }
}

impl Default for VkSparseImageFormatFlags {
    fn default() -> VkSparseImageFormatFlags {
        VkSparseImageFormatFlags {
            single_miptail: false,
            aligned_mip_size: false,
            nonstandard_block_size: false,
        }
    }
}

impl VkSparseImageFormatFlags {
    
    pub fn none() -> VkSparseImageFormatFlags {
        VkSparseImageFormatFlags {
            single_miptail: false,
            aligned_mip_size: false,
            nonstandard_block_size: false,
        }
    }
    
    pub fn all() -> VkSparseImageFormatFlags {
        VkSparseImageFormatFlags {
            single_miptail: true,
            aligned_mip_size: true,
            nonstandard_block_size: true,
        }
    }
}