blob: 05f4d9e3655b354b373ab3c78983ffdae07779e8 [file] [log] [blame]
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();
}