blob: aa07e025d0e5e4797ef874ea3ac9b7dab21d2927 [file] [log] [blame]
fn all_f46790() {
var res : bool = all(vec2<bool>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
all_f46790();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
all_f46790();
}
[[stage(compute)]]
fn compute_main() {
all_f46790();
}