glam/
swizzles.rs

1mod dvec2_impl;
2mod dvec3_impl;
3mod dvec4_impl;
4
5mod ivec2_impl;
6mod ivec3_impl;
7mod ivec4_impl;
8
9mod i8vec2_impl;
10mod i8vec3_impl;
11mod i8vec4_impl;
12
13mod u8vec2_impl;
14mod u8vec3_impl;
15mod u8vec4_impl;
16
17mod i16vec2_impl;
18mod i16vec3_impl;
19mod i16vec4_impl;
20
21mod u16vec2_impl;
22mod u16vec3_impl;
23mod u16vec4_impl;
24
25mod i64vec2_impl;
26mod i64vec3_impl;
27mod i64vec4_impl;
28
29mod u64vec2_impl;
30mod u64vec3_impl;
31mod u64vec4_impl;
32
33mod uvec2_impl;
34mod uvec3_impl;
35mod uvec4_impl;
36
37mod vec2_impl;
38mod vec3_impl;
39
40#[cfg(any(
41    not(any(
42        feature = "core-simd",
43        target_arch = "aarch64",
44        target_feature = "sse2",
45        target_feature = "simd128"
46    )),
47    feature = "scalar-math"
48))]
49mod scalar;
50
51#[cfg(all(
52    target_arch = "aarch64",
53    not(any(feature = "core-simd", feature = "scalar-math"))
54))]
55mod neon;
56
57#[cfg(all(
58    target_feature = "sse2",
59    not(any(feature = "core-simd", feature = "scalar-math"))
60))]
61mod sse2;
62
63#[cfg(all(
64    target_feature = "simd128",
65    not(any(feature = "core-simd", feature = "scalar-math"))
66))]
67mod wasm32;
68
69#[cfg(all(feature = "core-simd", not(feature = "scalar-math")))]
70mod coresimd;
71
72mod vec_traits;
73pub use vec_traits::*;