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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/// Used to implement `WgslType` for structs
///
/// # Attributes
///
/// Struct attributes
///
/// - `#[assert_uniform_compat]`
/// used to assert at compile time that the struct meets the requirements of the
/// [uniform address space restrictions on stored values](https://gpuweb.github.io/gpuweb/wgsl/#address-spaces-uniform) and the
/// [uniform address space layout constraints](https://gpuweb.github.io/gpuweb/wgsl/#address-space-layout-constraints).
///
/// You can also use [`WgslType::assert_uniform_compat()`] instead
///
/// Field attributes
///
/// - `#[align(X)]` where `X` is a power of 2 [`u32`] literal (equivalent to [WGSL align attribute](https://gpuweb.github.io/gpuweb/wgsl/#attribute-align))
///
/// Used to increase the alignment of the field
///
/// - `#[size(X)]` where `X` is a [`u32`] literal (equivalent to [WGSL size attribute](https://gpuweb.github.io/gpuweb/wgsl/#attribute-size))
///
/// Used to increase the size of the field
///
/// - `#[size(runtime)]` can only be attached to the last field of the struct
///
/// Used to denote the fact that the field it is attached to is a runtime-sized array
///
/// # Note about generics
///
/// While structs using generic type parameters are supported by this derive macro
///
/// - the `#[assert_uniform_compat]` attribute won't work with such a struct
///
/// - the `#[align(X)]` and `#[size(X)]` attributes will only work
/// if they are attached to fields whose type contains no generic type parameters
///
/// # Examples
///
/// Simple
///
/// ```
/// # use mint;
/// # use crate::encase::WgslType;
/// #[derive(WgslType)]
/// struct AffineTransform2D {
/// matrix: mint::ColumnMatrix2<f32>,
/// translate: mint::Vector2<f32>
/// }
/// ```
///
/// Contains a runtime-sized array
///
/// _The [`ArrayLength`] type can be used to explicitly write or read the length of the contained runtime-sized array_
///
/// ```
/// # use mint;
/// # use crate::encase::WgslType;
/// # use crate::encase::ArrayLength;
/// #[derive(WgslType)]
/// struct Positions {
/// length: ArrayLength,
/// #[size(runtime)]
/// positions: Vec<mint::Point2<f32>>
/// }
/// ```
///
/// Assert uniform address space requirements
///
/// _Will not compile since runtime-sized arrays are not compatible with the
/// uniform address space restrictions on stored values_
///
/// ```compile_fail,E0080
/// # use crate::encase::WgslType;
/// # use mint;
/// #[derive(WgslType)]
/// #[assert_uniform_compat]
/// struct Invalid {
/// #[size(runtime)]
/// vec: Vec<mint::Vector4<f32>>
/// }
/// ```
///
/// _Will not compile_
///
/// ```compile_fail,E0080
/// # use crate::encase::WgslType;
/// #[derive(WgslType)]
/// #[assert_uniform_compat]
/// struct Invalid {
/// a: f32,
/// b: f32, // invalid: offset of b is 4 bytes, but must be at least 16
/// }
/// ```
///
/// _Will compile (fixed via align attribute)_
///
/// ```
/// # use crate::encase::WgslType;
/// #[derive(WgslType)]
/// #[assert_uniform_compat]
/// struct Valid {
/// a: f32,
/// #[align(16)]
/// b: f32, // valid: offset of b is 16 bytes
/// }
/// ```
///
/// _Will compile (fixed via size attribute)_
///
/// ```
/// # use crate::encase::WgslType;
/// #[derive(WgslType)]
/// #[assert_uniform_compat]
/// struct Valid {
/// #[size(16)]
/// a: f32,
/// b: f32, // valid: offset of b is 16 bytes
/// }
/// ```
///
/// Complex
///
/// ```
/// # use crate::encase::WgslType;
/// #[derive(WgslType)]
/// struct Complex<
/// 'a,
/// 'b: 'a,
/// E: 'a + WgslType + encase::Size,
/// T: 'b + WgslType + encase::Size,
/// const N: usize,
/// > {
/// array: [&'a mut E; N],
/// #[size(runtime)]
/// rts_array: &'a mut Vec<&'b T>,
/// }
/// ```
///
pub use WgslType;
pub use crate;
pub use ArrayLength;
/// Module containing items necessary to implement `WgslType` for runtime-sized arrays
/// Module containing items necessary to implement `WgslType` for vectors
/// Module containing items necessary to implement `WgslType` for matrices
/// Private module used by macros