blob: 228cc320cc6b73b1840434f44cce61db13b60072 [file] [log] [blame]
fn any_e755c1() {
var res : bool = any(vec3<bool>(true));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
any_e755c1();
return vec4<f32>();
}
@fragment
fn fragment_main() {
any_e755c1();
}
@compute @workgroup_size(1)
fn compute_main() {
any_e755c1();
}