embedded-3dgfx 0.5.1

3D graphics rendering for embedded systems (fork of embedded-gfx by Kezii)
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod aa;
pub mod line;
pub mod scanline;
pub mod triangle;

#[cfg(feature = "aa")]
pub use aa::ReadPixel;
#[cfg(feature = "aa")]
pub use line::draw_line_aa;
pub use scanline::{EdgeStepper, FP_SHIFT, MAX_ROW_WIDTH, fixed_to_i32};
pub use triangle::{draw_triangle_zbuffered, tri_area2};