tessera_ui_basic_components/
pipelines.rs1pub mod blur;
2pub mod checkmark;
3pub mod contrast;
4pub(crate) mod fluid_glass;
5pub mod mean;
6mod pos_misc;
7pub mod shape;
8pub mod simple_rect;
9pub mod text;
10
11pub mod image;
12pub mod image_vector;
13
14mod compute;
15mod draw;
16
17pub use checkmark::{CheckmarkCommand, CheckmarkPipeline};
18pub use image_vector::{ImageVectorCommand, ImageVectorPipeline};
19pub use shape::{RippleProps, ShadowProps, ShapeCommand};
20pub use simple_rect::{SimpleRectCommand, SimpleRectPipeline};
21pub use text::{TextCommand, TextConstraint, TextData, read_font_system, write_font_system};
22
23pub fn register_pipelines(app: &mut tessera_ui::renderer::WgpuApp) {
24 draw::register(app);
25 compute::register(app);
26}