blob: e255187a14bd9e86665f6db2f406632f65cf6fae [file] [log] [blame]
fn clamp_23aa4f() {
var res = clamp(1.0, 1.0, 1.0);
}
@fragment
fn fragment_main() {
clamp_23aa4f();
}
@compute @workgroup_size(1)
fn compute_main() {
clamp_23aa4f();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
clamp_23aa4f();
return out;
}