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