blob: 9316046427655ed502bc297fc4239f572134df97 [file] [log] [blame]
fn clamp_5f0819() {
var res : vec3<i32> = clamp(vec3<i32>(), vec3<i32>(), vec3<i32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
clamp_5f0819();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
clamp_5f0819();
}
[[stage(compute)]]
fn compute_main() {
clamp_5f0819();
}