vello/piet-gpu-types/src/lib.rs
Raph Levien 294f6fd1db Experiment with new sorting scheme
Path segments are unsorted, but other elements are using the same
sort-middle approach as before.

This is a checkpoint. At this point, there are unoptimized versions
of tile init and coarse path raster, but it isn't wired up into a
working pipeline. Also observing about a 3x performance regression in
element processing, which needs to be investigated.
2020-06-03 09:29:25 -07:00

13 lines
225 B
Rust

// Structures used only internally probably don't need to be pub.
pub mod annotated;
pub mod bins;
pub mod encoder;
pub mod pathseg;
pub mod ptcl;
pub mod scene;
pub mod state;
pub mod test;
pub mod tile;
pub mod tilegroup;