fae 0.6.0

A simple and fast 2D rendering crate with optional window creation and text rendering functionality.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! The error types that `fae` can return.

mod fae_error;
pub use fae_error::Error;

mod image_creation_error;
pub use image_creation_error::ImageCreationError;

#[cfg(feature = "png")]
mod image_png_error;
#[cfg(feature = "png")]
pub use image_png_error::PngLoadingError;