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
use super::{Allocation, DeviceAllocator};
use anyhow::Result;
use ash::{version::DeviceV1_0, vk};
#[derive(Clone)]
pub struct PassthroughAllocator {
logical_device: ash::Device,
}
impl PassthroughAllocator {
pub fn create(logical_device: ash::Device) -> Self {
Self { logical_device }
}
}
impl DeviceAllocator for PassthroughAllocator {
unsafe fn allocate(
&mut self,
allocate_info: vk::MemoryAllocateInfo,
) -> Result<Allocation> {
Ok(Allocation {
memory: self
.logical_device
.allocate_memory(&allocate_info, None)?,
offset: 0,
byte_size: allocate_info.allocation_size,
memory_type_index: allocate_info.memory_type_index,
})
}
unsafe fn free(&mut self, allocation: &Allocation) -> Result<()> {
self.logical_device.free_memory(allocation.memory, None);
Ok(())
}
}