dawn-cmake/test/intrinsics/gen/any/083428.wgsl.expected.wgsl

20 lines
289 B
WebGPU Shading Language
Raw Normal View History

fn any_083428() {
var res : bool = any(vec4<bool>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
any_083428();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
any_083428();
}
[[stage(compute)]]
fn compute_main() {
any_083428();
}