rasterize 0.6.8

Simple and small 2D rendering library
Documentation
1
2
3
4
5
6
7
8
pub mod fallback;
#[cfg(not(all(any(target_arch = "x86", target_arch = "x86_64"), feature = "simd")))]
pub use fallback::*;

#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), feature = "simd"))]
mod x86;
#[cfg(all(any(target_arch = "x86", target_arch = "x86_64"), feature = "simd"))]
pub use x86::*;