blob: 283ab5a7dc691388b2b0f3d711787a6be7a775bb [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();
}