tui_test/render/mod.rs
1mod nerd_font;
2pub mod svg;
3
4#[cfg(feature = "recording-raster")]
5pub mod encode;
6#[cfg(feature = "recording-raster")]
7mod font;
8#[cfg(feature = "recording-raster")]
9#[allow(dead_code)] // The full raster renderer consumes these primitives next in the stack.
10pub mod raster;
11
12#[cfg(all(test, windows, feature = "recording-font-jetbrains-mono-styles"))]
13mod snapshot_tests;