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
use crate::canvas::managed::handles::Handle;

/// Typed wrapper for a u32 handle
#[derive(Clone, Debug, Default, PartialEq, Eq, Hash)]
pub struct CompuBufferHandle {
    pub(in crate::compute) handle: u32,
}

impl Handle for CompuBufferHandle {
    fn get_handle(&self) -> u32 {
        self.handle
    }
}

/// Typed wrapper for a u32 handle
#[derive(Clone, Debug, Default, PartialEq, Eq, Hash)]
pub struct CompuKernelHandle {
    pub(in crate::compute) handle: u32,
}

impl Handle for CompuKernelHandle {
    fn get_handle(&self) -> u32 {
        self.handle
    }
}