2018-09-22 19:18:59 +08:00
|
|
|
//! (Reexported) Additional features not specified by GLSL specification
|
|
|
|
|
|
|
|
pub use self::matrix_clip_space::*;
|
|
|
|
pub use self::matrix_projection::*;
|
|
|
|
pub use self::matrix_relationnal::*;
|
|
|
|
pub use self::matrix_transform::*;
|
|
|
|
pub use self::scalar_common::*;
|
|
|
|
pub use self::scalar_constants::*;
|
|
|
|
pub use self::vector_common::*;
|
|
|
|
pub use self::vector_relational::*;
|
2018-09-22 22:40:58 +08:00
|
|
|
pub use self::quaternion_common::*;
|
|
|
|
pub use self::quaternion_geometric::*;
|
|
|
|
pub use self::quaternion_relational::*;
|
|
|
|
pub use self::quaternion_transform::*;
|
|
|
|
pub use self::quaternion_trigonometric::*;
|
2018-09-22 19:18:59 +08:00
|
|
|
|
|
|
|
|
|
|
|
mod matrix_clip_space;
|
|
|
|
mod matrix_projection;
|
|
|
|
mod matrix_relationnal;
|
|
|
|
mod matrix_transform;
|
|
|
|
mod scalar_common;
|
|
|
|
mod scalar_constants;
|
|
|
|
mod vector_common;
|
2018-09-22 22:40:58 +08:00
|
|
|
mod vector_relational;
|
|
|
|
mod quaternion_common;
|
|
|
|
mod quaternion_geometric;
|
|
|
|
mod quaternion_relational;
|
|
|
|
mod quaternion_transform;
|
|
|
|
mod quaternion_trigonometric;
|