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