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
use std::os::raw::c_void;

use ash::vk;

macro_rules! define_handle {
    ($name: ident) => {
        #[repr(transparent)]
        #[derive(Eq, PartialEq, Ord, PartialOrd, Clone, Copy, Hash)]
        pub struct $name(*mut u8);

        unsafe impl Send for $name {}
        unsafe impl Sync for $name {}

        impl Default for $name {
            #[inline]
            fn default() -> Self {
                Self::null()
            }
        }

        impl $name {
            #[inline]
            pub fn as_raw(self) -> u64 {
                self.0 as u64
            }

            #[inline]
            pub fn from_raw(x: u64) -> Self {
                Self(x as _)
            }

            #[inline]
            pub const fn null() -> Self {
                Self(::std::ptr::null_mut())
            }
        }

        impl ::std::fmt::Pointer for $name {
            #[inline]
            fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
                ::std::fmt::Pointer::fmt(&self.0, f)
            }
        }
        impl ::std::fmt::Debug for $name {
            #[inline]
            fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
                ::std::fmt::Debug::fmt(&self.0, f)
            }
        }
    };
}

macro_rules! define_non_dispatchable_handle {
    ($name: ident) => {
        #[repr(transparent)]
        #[derive(Eq, PartialEq, Ord, PartialOrd, Clone, Copy, Hash, Default)]
        pub struct $name(u64);

        impl $name {
            #[inline]
            pub fn as_raw(self) -> u64 {
                self.0
            }

            #[inline]
            pub fn from_raw(x: u64) -> Self {
                Self(x)
            }

            #[inline]
            pub const fn null() -> Self {
                Self(0)
            }
        }

        impl ::std::fmt::Pointer for $name {
            #[inline]
            fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
                write!(f, "0x{:x}", self.0)
            }
        }
        impl ::std::fmt::Debug for $name {
            #[inline]
            fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
                write!(f, "0x{:x}", self.0)
            }
        }
    };
}

define_handle!(Allocator);
define_handle!(Pool);
define_handle!(Allocation);
define_handle!(DefragmentationContext);
define_non_dispatchable_handle!(VirtualAllocation);
define_handle!(VirtualBlock);

pub type AllocateDeviceMemoryFunction = Option<unsafe extern "C" fn(allocator: Allocator, memory_type: u32, memory: vk::DeviceMemory, size: vk::DeviceSize, user_data: *mut c_void)>;
pub type FreeDeviceMemoryFunction = Option<unsafe extern "C" fn(allocator: Allocator, memory_type: u32, memory: vk::DeviceMemory, size: vk::DeviceSize, user_data: *mut c_void)>;