radiant-rs 0.15.0

Thread-safe Rust sprite rendering engine with a friendly API and custom shader support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub use std::sync::atomic::{AtomicUsize, AtomicBool, Ordering};
pub use std::sync::{Arc, Mutex, MutexGuard, RwLock, RwLockReadGuard, Weak};
pub use std::cell::RefCell;
pub use std::rc::Rc;
pub use std::ops::{/*Neg, Add, AddAssign, Sub, SubAssign, Mul, MulAssign, Div, DivAssign,*/ Deref, DerefMut};
pub use std::collections::HashMap;
pub use std::path::Path;
pub use std::fmt::Debug;
pub use std::fs::File;
//pub use std::cmp::PartialOrd;
pub use std::convert::From;
pub use std::{fmt, cmp, mem, f32, f64, io, result};