No description
  • Rust 97.6%
  • GLSL 2.4%
Find a file
2020-09-01 02:10:53 +03:00
examples Update dependencies 2020-08-20 01:10:50 +03:00
src Change resize_texture paramss 2020-09-01 02:07:38 +03:00
.gitignore Update dependencies 2020-02-24 21:19:00 +02:00
Cargo.toml Update version 2020-09-01 02:10:53 +03:00
LICENSE.md Add license, set windows subsystem in examples 2018-10-06 00:03:27 +03:00
README.md Update readme 2020-01-17 16:58:17 +02:00

fae

Fae is a hardware-accelerated 2D sprite renderer, with optional text rendering capabilities.

The rendering is implemented with OpenGL 2.1/3.3 depending on your hardware. Font rasterization uses rusttype for ttfs, and font8x8 can be used as a small fallback font.

Why you shouldn't use this crate: I haven't profiled this crate against other similar crates, nor do I have the experience to know if this crate is a good implementation of a 2D renderer. I'm making it to power my own games, because of NIH.

Documentation

See the examples/ as well.

Optional features

  • The text feature provides access to the text rendering API, but requires font8x8 or ttf to be enabled as well.
    • The font8x8 feature provides access to text rendering with the font8x8 font.
    • The ttf feature provides access to text rendering with ttf fonts via the rusttype crate.
  • The png feature provides easy png loading functionality via the png crate.

License

This library is provided under the terms of the MIT license.