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