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 isizevec2_impl;
34mod isizevec3_impl;
35mod isizevec4_impl;
36
37mod usizevec2_impl;
38mod usizevec3_impl;
39mod usizevec4_impl;
40
41mod uvec2_impl;
42mod uvec3_impl;
43mod uvec4_impl;
44
45mod vec2_impl;
46mod vec3_impl;
47
48#[cfg(any(
49    not(any(
50        feature = "core-simd",
51        target_arch = "aarch64",
52        target_feature = "sse2",
53        target_feature = "simd128"
54    )),
55    feature = "scalar-math"
56))]
57mod scalar;
58
59#[cfg(all(
60    target_arch = "aarch64",
61    not(any(feature = "core-simd", feature = "scalar-math"))
62))]
63mod neon;
64
65#[cfg(all(
66    target_feature = "sse2",
67    not(any(feature = "core-simd", feature = "scalar-math"))
68))]
69mod sse2;
70
71#[cfg(all(
72    target_feature = "simd128",
73    not(any(feature = "core-simd", feature = "scalar-math"))
74))]
75mod wasm;
76
77#[cfg(all(feature = "core-simd", not(feature = "scalar-math")))]
78mod coresimd;
79
80mod vec_traits;
81pub use vec_traits::*;