embedded-rgba 0.1.1

RGBA support for embedded-graphics with fast framebuffers
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![no_std]

mod alpha;
mod canvas;
mod framebuffer;
mod rgba;

pub use alpha::*;
pub use canvas::*;
use framebuffer::*;
pub use rgba::*;