Skip to main content

fae/
lib.rs

1//! Fae is a small 2D graphics rendering crate, with the main intended
2//! use-case being 2D games. Its main goals are simplicity,
3//! performance, and compatiblity.
4
5#![warn(missing_docs)]
6
7#[allow(missing_docs, unknown_lints, clippy::all)]
8pub mod gl {
9    //! OpenGL functions and constants.
10    include!(concat!(env!("OUT_DIR"), "/gl_bindings.rs"));
11}
12
13mod api;
14mod error;
15mod gl_version;
16mod image;
17mod renderer;
18mod shaders;
19mod sprite;
20#[cfg(feature = "text")]
21mod text;
22mod types;
23
24pub mod profiler;
25pub use api::*;