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