blob: 3dbfa28d2a7948b6e3cdef48bfd9cc2061f134bb [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), workgroup_size(1)]]
fn compute_main() {
all_f46790();
}