aboutsummaryrefslogtreecommitdiff
path: root/src/i64.rs
blob: 03f2a0fccb2b43d7274876eb75f911d90f6a6576 (plain)
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
mod i64vec2;
mod i64vec3;
mod i64vec4;

pub use i64vec2::{i64vec2, I64Vec2};
pub use i64vec3::{i64vec3, I64Vec3};
pub use i64vec4::{i64vec4, I64Vec4};

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

    mod const_test_i64vec2 {
        const_assert_eq!(16, core::mem::size_of::<super::I64Vec2>());

        #[cfg(not(feature = "cuda"))]
        const_assert_eq!(
            core::mem::align_of::<i64>(),
            core::mem::align_of::<super::I64Vec2>()
        );
        #[cfg(feature = "cuda")]
        const_assert_eq!(16, core::mem::align_of::<super::I64Vec2>());
    }

    mod const_test_i64vec3 {
        const_assert_eq!(24, core::mem::size_of::<super::I64Vec3>());

        const_assert_eq!(
            core::mem::align_of::<i64>(),
            core::mem::align_of::<super::I64Vec3>()
        );
    }

    mod const_test_i64vec4 {
        const_assert_eq!(32, core::mem::size_of::<super::I64Vec4>());

        #[cfg(not(feature = "cuda"))]
        const_assert_eq!(
            core::mem::align_of::<i64>(),
            core::mem::align_of::<super::I64Vec4>()
        );
        #[cfg(feature = "cuda")]
        const_assert_eq!(16, core::mem::align_of::<super::I64Vec4>());
    }
}