mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-10 20:51:29 +11:00
1c6ca7e5fb
Signed-off-by: Elias Naur <mail@eliasnaur.com>
13 lines
227 B
Rust
13 lines
227 B
Rust
use piet_gpu_derive::piet_gpu;
|
|
|
|
// The output of the binning stage, organized as a linked list of chunks.
|
|
|
|
piet_gpu! {
|
|
#[gpu_write]
|
|
mod bins {
|
|
struct BinInstance {
|
|
element_ix: u32,
|
|
}
|
|
}
|
|
}
|