glam/
i8.rs

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
mod i8vec2;
mod i8vec3;
mod i8vec4;

pub use i8vec2::{i8vec2, I8Vec2};
pub use i8vec3::{i8vec3, I8Vec3};
pub use i8vec4::{i8vec4, I8Vec4};

#[cfg(not(target_arch = "spirv"))]
mod test {
    use super::*;

    mod const_test_i8vec2 {
        const_assert_eq!(2, core::mem::size_of::<super::I8Vec2>());

        #[cfg(not(feature = "cuda"))]
        const_assert_eq!(
            core::mem::align_of::<i8>(),
            core::mem::align_of::<super::I8Vec2>()
        );
        #[cfg(feature = "cuda")]
        const_assert_eq!(2, core::mem::align_of::<super::I8Vec2>());
    }

    mod const_test_i8vec3 {
        const_assert_eq!(
            core::mem::align_of::<i8>(),
            core::mem::align_of::<super::I8Vec3>()
        );
        const_assert_eq!(3, core::mem::size_of::<super::I8Vec3>());
    }

    mod const_test_i8vec4 {
        const_assert_eq!(4, core::mem::size_of::<super::I8Vec4>());

        #[cfg(not(feature = "cuda"))]
        const_assert_eq!(
            core::mem::align_of::<i8>(),
            core::mem::align_of::<super::I8Vec4>()
        );
        #[cfg(feature = "cuda")]
        const_assert_eq!(4, core::mem::align_of::<super::I8Vec4>());
    }
}