mirror of
https://github.com/EmbarkStudios/rust-gpu.git
synced 2024-11-26 16:54:08 +00:00
8 lines
143 B
Rust
8 lines
143 B
Rust
|
// build-pass
|
||
|
|
||
|
#[spirv(fragment)]
|
||
|
pub fn main() {
|
||
|
let vector = glam::BVec2::new(true, false);
|
||
|
assert!(spirv_std::arch::any(vector));
|
||
|
}
|