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