blob: 9e0642149c72c3b77f9b73c6d016a227c7b10d77 [file] [log] [blame]
fn max_a93419() {
var res : vec4<f32> = max(vec4<f32>(), vec4<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
max_a93419();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
max_a93419();
}
[[stage(compute), workgroup_size(1)]]
fn compute_main() {
max_a93419();
}