xbr 0.2.4

A pixel art upscaler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// mods
mod block;
mod error;
mod pixel;
mod xbr;

// features
#[cfg(feature = "image")]
pub mod image;

// rexports
pub use crate::block::Block;
pub use crate::error::XBRError;
pub use crate::pixel::*;
pub use crate::xbr::x2;