librashader/librashader-cache/src/lib.rs
2023-02-15 18:08:47 -05:00

20 lines
464 B
Rust

//! This crate implements the librashader transparent cache.
//!
//! This crate is exempt from semantic versioning guarantees and is an implementation
//! detail of librashader runtimes.
mod cache;
mod compilation;
mod key;
mod cacheable;
pub use cacheable::Cacheable;
pub use key::CacheKey;
pub use compilation::CachedCompilation;
pub use cache::cache_pipeline;
pub use cache::cache_shader_object;
#[cfg(all(target_os = "windows", feature = "d3d"))]
mod d3d;