mirror of
https://github.com/Rust-GPU/rust-gpu.git
synced 2026-06-12 12:31:43 +09:00
9 lines
99 B
Rust
9 lines
99 B
Rust
// build-pass
|
|
|
|
use spirv_std as _;
|
|
|
|
#[spirv(fragment)]
|
|
pub fn main(i: i32) {
|
|
while i < 10 {}
|
|
}
|