2018-09-22 19:18:59 +08:00
|
|
|
//! (Reexported) Recommended features not specified by GLSL specification
|
|
|
|
|
|
|
|
//pub use self::bitfield::*;
|
|
|
|
pub use self::constants::*;
|
|
|
|
pub use self::epsilon::*;
|
|
|
|
//pub use self::integer::*;
|
|
|
|
pub use self::matrix_access::*;
|
|
|
|
pub use self::matrix_inverse::*;
|
|
|
|
//pub use self::packing::*;
|
|
|
|
//pub use self::reciprocal::*;
|
|
|
|
//pub use self::round::*;
|
|
|
|
pub use self::type_ptr::*;
|
|
|
|
//pub use self::ulp::*;
|
2018-09-22 22:40:58 +08:00
|
|
|
pub use self::quaternion::*;
|
2018-09-22 19:18:59 +08:00
|
|
|
|
|
|
|
|
|
|
|
//mod bitfield;
|
|
|
|
mod constants;
|
|
|
|
mod epsilon;
|
|
|
|
//mod integer;
|
|
|
|
mod matrix_access;
|
|
|
|
mod matrix_inverse;
|
|
|
|
//mod packing;
|
|
|
|
//mod reciprocal;
|
|
|
|
//mod round;
|
|
|
|
mod type_ptr;
|
2018-09-22 22:40:58 +08:00
|
|
|
//mod ulp;
|
|
|
|
mod quaternion;
|