blob: 08e5229fb3436bc0699c6087f8a17d723b4b7c98 [file] [log] [blame]
fn min_527b79() {
const arg_0 = vec2(1);
const arg_1 = vec2(1);
var res = min(arg_0, arg_1);
}
@fragment
fn fragment_main() {
min_527b79();
}
@compute @workgroup_size(1)
fn compute_main() {
min_527b79();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
min_527b79();
return out;
}