1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-02 21:02:34 +00:00
trezor-firmware/core/embed/rust/src/ui/shape/mod.rs
obrusvit 6ef213e858 feat(core): T3T1 corner highlight shape
Adds a new shape which serves to highlight information within a
rectangle.
2024-03-27 13:56:37 +01:00

31 lines
659 B
Rust

mod bar;
mod base;
#[cfg(feature = "ui_blurring")]
mod blur;
mod cache;
mod circle;
#[cfg(feature = "ui_jpeg_decoder")]
mod jpeg;
mod model;
mod qrcode;
mod render;
mod corner_highlight;
mod text;
mod toif;
pub use bar::Bar;
pub use base::{Shape, ShapeClone};
#[cfg(feature = "ui_blurring")]
pub use blur::Blurring;
pub use cache::drawing_cache::DrawingCache;
pub use circle::Circle;
#[cfg(feature = "ui_jpeg_decoder")]
pub use jpeg::JpegImage;
pub use model::render_on_display;
pub use qrcode::QrImage;
pub use render::{DirectRenderer, ProgressiveRenderer, Renderer};
pub use corner_highlight::CornerHighlight;
pub use text::Text;
pub use toif::ToifImage;