vello/piet-gpu-types/src/state.rs

18 lines
349 B
Rust
Raw Normal View History

use piet_gpu_derive::piet_gpu;
piet_gpu! {
#[gpu_write]
mod state {
struct State {
mat: [f32; 4],
translate: [f32; 2],
bbox: [f32; 4],
linewidth: f32,
flags: u32,
path_count: u32,
pathseg_count: u32,
trans_count: u32,
}
}
}