renderling/
internal.rs

1//! Internal types and functions.
2//!
3//! ## Note
4//! The types and functions exposed by this module are used internally, and
5//! are _not_ required to be used by users of this library.
6//!
7//! They are public here because they are needed for integration tests, and
8//! on the off-chance that somebody wants to build something with them.
9
10#[cfg(cpu)]
11mod cpu;
12#[cfg(cpu)]
13pub use cpu::*;