Skip to main content

lgui_core/renderer/
mod.rs

1//! Internal renderer cache controls and shared rendering support.
2
3mod cache;
4#[cfg(feature = "raster-effects")]
5pub(crate) mod shadow;
6
7pub(crate) use cache::install_render_cache;
8pub use cache::*;