mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-01 04:12:37 +00:00
25 lines
917 B
Rust
25 lines
917 B
Rust
#[cfg(all(feature = "xframebuffer", feature = "display_mono"))]
|
|
pub mod fb_mono8;
|
|
#[cfg(all(feature = "xframebuffer", feature = "display_mono"))]
|
|
pub use fb_mono8::render_on_display;
|
|
|
|
#[cfg(all(not(feature = "xframebuffer"), feature = "display_rgb565"))]
|
|
pub mod nofb_rgb565;
|
|
#[cfg(all(not(feature = "xframebuffer"), feature = "display_rgb565"))]
|
|
pub use nofb_rgb565::render_on_display;
|
|
|
|
#[cfg(all(feature = "xframebuffer", feature = "display_rgb565"))]
|
|
pub mod fb_rgb565;
|
|
#[cfg(all(feature = "xframebuffer", feature = "display_rgb565"))]
|
|
pub use fb_rgb565::render_on_display;
|
|
|
|
#[cfg(all(feature = "xframebuffer", feature = "display_rgba8888"))]
|
|
pub mod fb_rgba8888;
|
|
#[cfg(all(feature = "xframebuffer", feature = "display_rgba8888"))]
|
|
pub use fb_rgba8888::render_on_display;
|
|
|
|
#[cfg(not(feature = "new_rendering"))]
|
|
pub mod fake_display;
|
|
#[cfg(not(feature = "new_rendering"))]
|
|
pub use fake_display::render_on_display;
|