dawn-cmake/test/intrinsics/gen/clamp/548fc7.wgsl.expected.wgsl

20 lines
336 B
WebGPU Shading Language

fn clamp_548fc7() {
var res : vec3<u32> = clamp(vec3<u32>(), vec3<u32>(), vec3<u32>());
}
@stage(vertex)
fn vertex_main() -> @builtin(position) vec4<f32> {
clamp_548fc7();
return vec4<f32>();
}
@stage(fragment)
fn fragment_main() {
clamp_548fc7();
}
@stage(compute) @workgroup_size(1)
fn compute_main() {
clamp_548fc7();
}