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