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