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