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