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