1use alloc::format;
4use alloc::string::{String, ToString};
5
6pub trait ToWgsl: Sized {
19 fn to_wgsl(self) -> &'static str;
21}
22
23pub trait TryToWgsl: Sized {
37 fn try_to_wgsl(self) -> Option<&'static str>;
42
43 const DESCRIPTION: &'static str;
45
46 fn to_wgsl_for_diagnostics(self) -> String
57 where
58 Self: core::fmt::Debug + Copy,
59 {
60 match self.try_to_wgsl() {
61 Some(static_string) => static_string.to_string(),
62 None => format!("{{non-WGSL {} {self:?}}}", Self::DESCRIPTION),
63 }
64 }
65}
66
67impl TryToWgsl for crate::MathFunction {
68 const DESCRIPTION: &'static str = "math function";
69
70 fn try_to_wgsl(self) -> Option<&'static str> {
71 use crate::MathFunction as Mf;
72
73 Some(match self {
74 Mf::Abs => "abs",
75 Mf::Min => "min",
76 Mf::Max => "max",
77 Mf::Clamp => "clamp",
78 Mf::Saturate => "saturate",
79 Mf::Cos => "cos",
80 Mf::Cosh => "cosh",
81 Mf::Sin => "sin",
82 Mf::Sinh => "sinh",
83 Mf::Tan => "tan",
84 Mf::Tanh => "tanh",
85 Mf::Acos => "acos",
86 Mf::Asin => "asin",
87 Mf::Atan => "atan",
88 Mf::Atan2 => "atan2",
89 Mf::Asinh => "asinh",
90 Mf::Acosh => "acosh",
91 Mf::Atanh => "atanh",
92 Mf::Radians => "radians",
93 Mf::Degrees => "degrees",
94 Mf::Ceil => "ceil",
95 Mf::Floor => "floor",
96 Mf::Round => "round",
97 Mf::Fract => "fract",
98 Mf::Trunc => "trunc",
99 Mf::Modf => "modf",
100 Mf::Frexp => "frexp",
101 Mf::Ldexp => "ldexp",
102 Mf::Exp => "exp",
103 Mf::Exp2 => "exp2",
104 Mf::Log => "log",
105 Mf::Log2 => "log2",
106 Mf::Pow => "pow",
107 Mf::Dot => "dot",
108 Mf::Dot4I8Packed => "dot4I8Packed",
109 Mf::Dot4U8Packed => "dot4U8Packed",
110 Mf::Cross => "cross",
111 Mf::Distance => "distance",
112 Mf::Length => "length",
113 Mf::Normalize => "normalize",
114 Mf::FaceForward => "faceForward",
115 Mf::Reflect => "reflect",
116 Mf::Refract => "refract",
117 Mf::Sign => "sign",
118 Mf::Fma => "fma",
119 Mf::Mix => "mix",
120 Mf::Step => "step",
121 Mf::SmoothStep => "smoothstep",
122 Mf::Sqrt => "sqrt",
123 Mf::InverseSqrt => "inverseSqrt",
124 Mf::Transpose => "transpose",
125 Mf::Determinant => "determinant",
126 Mf::QuantizeToF16 => "quantizeToF16",
127 Mf::CountTrailingZeros => "countTrailingZeros",
128 Mf::CountLeadingZeros => "countLeadingZeros",
129 Mf::CountOneBits => "countOneBits",
130 Mf::ReverseBits => "reverseBits",
131 Mf::ExtractBits => "extractBits",
132 Mf::InsertBits => "insertBits",
133 Mf::FirstTrailingBit => "firstTrailingBit",
134 Mf::FirstLeadingBit => "firstLeadingBit",
135 Mf::Pack4x8snorm => "pack4x8snorm",
136 Mf::Pack4x8unorm => "pack4x8unorm",
137 Mf::Pack2x16snorm => "pack2x16snorm",
138 Mf::Pack2x16unorm => "pack2x16unorm",
139 Mf::Pack2x16float => "pack2x16float",
140 Mf::Pack4xI8 => "pack4xI8",
141 Mf::Pack4xU8 => "pack4xU8",
142 Mf::Pack4xI8Clamp => "pack4xI8Clamp",
143 Mf::Pack4xU8Clamp => "pack4xU8Clamp",
144 Mf::Unpack4x8snorm => "unpack4x8snorm",
145 Mf::Unpack4x8unorm => "unpack4x8unorm",
146 Mf::Unpack2x16snorm => "unpack2x16snorm",
147 Mf::Unpack2x16unorm => "unpack2x16unorm",
148 Mf::Unpack2x16float => "unpack2x16float",
149 Mf::Unpack4xI8 => "unpack4xI8",
150 Mf::Unpack4xU8 => "unpack4xU8",
151
152 Mf::Inverse | Mf::Outer => return None,
154 })
155 }
156}
157
158impl TryToWgsl for crate::BuiltIn {
159 const DESCRIPTION: &'static str = "builtin value";
160
161 fn try_to_wgsl(self) -> Option<&'static str> {
162 use crate::BuiltIn as Bi;
163 Some(match self {
164 Bi::Position { .. } => "position",
165 Bi::ViewIndex => "view_index",
166 Bi::InstanceIndex => "instance_index",
167 Bi::VertexIndex => "vertex_index",
168 Bi::ClipDistance => "clip_distances",
169 Bi::FragDepth => "frag_depth",
170 Bi::FrontFacing => "front_facing",
171 Bi::PrimitiveIndex => "primitive_index",
172 Bi::Barycentric { perspective: true } => "barycentric",
173 Bi::Barycentric { perspective: false } => "barycentric_no_perspective",
174 Bi::SampleIndex => "sample_index",
175 Bi::SampleMask => "sample_mask",
176 Bi::GlobalInvocationId => "global_invocation_id",
177 Bi::LocalInvocationId => "local_invocation_id",
178 Bi::LocalInvocationIndex => "local_invocation_index",
179 Bi::WorkGroupId => "workgroup_id",
180 Bi::NumWorkGroups => "num_workgroups",
181 Bi::NumSubgroups => "num_subgroups",
182 Bi::SubgroupId => "subgroup_id",
183 Bi::SubgroupSize => "subgroup_size",
184 Bi::SubgroupInvocationId => "subgroup_invocation_id",
185
186 Bi::MeshTaskSize => "mesh_task_size",
188 Bi::TriangleIndices => "triangle_indices",
189 Bi::LineIndices => "line_indices",
190 Bi::PointIndex => "point_index",
191 Bi::Vertices => "vertices",
192 Bi::Primitives => "primitives",
193 Bi::VertexCount => "vertex_count",
194 Bi::PrimitiveCount => "primitive_count",
195 Bi::CullPrimitive => "cull_primitive",
196
197 Bi::BaseInstance
198 | Bi::BaseVertex
199 | Bi::CullDistance
200 | Bi::PointSize
201 | Bi::DrawID
202 | Bi::PointCoord
203 | Bi::WorkGroupSize => return None,
204 })
205 }
206}
207
208impl ToWgsl for crate::Interpolation {
209 fn to_wgsl(self) -> &'static str {
210 match self {
211 crate::Interpolation::Perspective => "perspective",
212 crate::Interpolation::Linear => "linear",
213 crate::Interpolation::Flat => "flat",
214 crate::Interpolation::PerVertex => "per_vertex",
215 }
216 }
217}
218
219impl ToWgsl for crate::Sampling {
220 fn to_wgsl(self) -> &'static str {
221 match self {
222 crate::Sampling::Center => "center",
223 crate::Sampling::Centroid => "centroid",
224 crate::Sampling::Sample => "sample",
225 crate::Sampling::First => "first",
226 crate::Sampling::Either => "either",
227 }
228 }
229}
230
231impl ToWgsl for crate::StorageFormat {
232 fn to_wgsl(self) -> &'static str {
233 use crate::StorageFormat as Sf;
234
235 match self {
236 Sf::R8Unorm => "r8unorm",
237 Sf::R8Snorm => "r8snorm",
238 Sf::R8Uint => "r8uint",
239 Sf::R8Sint => "r8sint",
240 Sf::R16Uint => "r16uint",
241 Sf::R16Sint => "r16sint",
242 Sf::R16Float => "r16float",
243 Sf::Rg8Unorm => "rg8unorm",
244 Sf::Rg8Snorm => "rg8snorm",
245 Sf::Rg8Uint => "rg8uint",
246 Sf::Rg8Sint => "rg8sint",
247 Sf::R32Uint => "r32uint",
248 Sf::R32Sint => "r32sint",
249 Sf::R32Float => "r32float",
250 Sf::Rg16Uint => "rg16uint",
251 Sf::Rg16Sint => "rg16sint",
252 Sf::Rg16Float => "rg16float",
253 Sf::Rgba8Unorm => "rgba8unorm",
254 Sf::Rgba8Snorm => "rgba8snorm",
255 Sf::Rgba8Uint => "rgba8uint",
256 Sf::Rgba8Sint => "rgba8sint",
257 Sf::Bgra8Unorm => "bgra8unorm",
258 Sf::Rgb10a2Uint => "rgb10a2uint",
259 Sf::Rgb10a2Unorm => "rgb10a2unorm",
260 Sf::Rg11b10Ufloat => "rg11b10ufloat",
261 Sf::R64Uint => "r64uint",
262 Sf::Rg32Uint => "rg32uint",
263 Sf::Rg32Sint => "rg32sint",
264 Sf::Rg32Float => "rg32float",
265 Sf::Rgba16Uint => "rgba16uint",
266 Sf::Rgba16Sint => "rgba16sint",
267 Sf::Rgba16Float => "rgba16float",
268 Sf::Rgba32Uint => "rgba32uint",
269 Sf::Rgba32Sint => "rgba32sint",
270 Sf::Rgba32Float => "rgba32float",
271 Sf::R16Unorm => "r16unorm",
272 Sf::R16Snorm => "r16snorm",
273 Sf::Rg16Unorm => "rg16unorm",
274 Sf::Rg16Snorm => "rg16snorm",
275 Sf::Rgba16Unorm => "rgba16unorm",
276 Sf::Rgba16Snorm => "rgba16snorm",
277 }
278 }
279}
280
281impl TryToWgsl for crate::Scalar {
282 const DESCRIPTION: &'static str = "scalar type";
283
284 fn try_to_wgsl(self) -> Option<&'static str> {
285 use crate::Scalar;
286
287 Some(match self {
288 Scalar::F16 => "f16",
289 Scalar::F32 => "f32",
290 Scalar::F64 => "f64",
291 Scalar::I32 => "i32",
292 Scalar::U32 => "u32",
293 Scalar::I64 => "i64",
294 Scalar::U64 => "u64",
295 Scalar::BOOL => "bool",
296 _ => return None,
297 })
298 }
299
300 fn to_wgsl_for_diagnostics(self) -> String {
301 match self.try_to_wgsl() {
302 Some(static_string) => static_string.to_string(),
303 None => match self.kind {
304 crate::ScalarKind::Sint
305 | crate::ScalarKind::Uint
306 | crate::ScalarKind::Float
307 | crate::ScalarKind::Bool => format!("{{non-WGSL scalar {self:?}}}"),
308 crate::ScalarKind::AbstractInt => "{AbstractInt}".to_string(),
309 crate::ScalarKind::AbstractFloat => "{AbstractFloat}".to_string(),
310 },
311 }
312 }
313}
314
315impl ToWgsl for crate::CooperativeRole {
316 fn to_wgsl(self) -> &'static str {
317 match self {
318 Self::A => "A",
319 Self::B => "B",
320 Self::C => "C",
321 }
322 }
323}
324
325impl ToWgsl for crate::ImageDimension {
326 fn to_wgsl(self) -> &'static str {
327 match self {
328 Self::D1 => "1d",
329 Self::D2 => "2d",
330 Self::D3 => "3d",
331 Self::Cube => "cube",
332 }
333 }
334}
335
336pub const fn address_space_str(
355 space: crate::AddressSpace,
356) -> (Option<&'static str>, Option<&'static str>) {
357 use crate::AddressSpace as As;
358
359 (
360 Some(match space {
361 As::Private => "private",
362 As::Uniform => "uniform",
363 As::Storage { access } => {
364 if access.contains(crate::StorageAccess::ATOMIC) {
365 return (Some("storage"), Some("atomic"));
366 } else if access.contains(crate::StorageAccess::STORE) {
367 return (Some("storage"), Some("read_write"));
368 } else {
369 "storage"
370 }
371 }
372 As::Immediate => "immediate",
373 As::WorkGroup => "workgroup",
374 As::Handle => return (None, None),
375 As::Function => "function",
376 As::TaskPayload => "task_payload",
377 }),
378 None,
379 )
380}