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