blob: 6e2b581034cf7a5181e312dfe79d184c658a969a [file] [log] [blame] [edit]
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,
}
}
}