populated module level files
parent
778c3afbbb
commit
57e837092e
Binary file not shown.
Binary file not shown.
|
@ -1,2 +1,6 @@
|
||||||
mod anim;
|
mod anim;
|
||||||
|
pub use self::anim::{
|
||||||
|
Animation,
|
||||||
|
NodeAnim,
|
||||||
|
MeshAnim,
|
||||||
|
MeshMorphAnim};
|
||||||
|
|
|
@ -1,2 +1,5 @@
|
||||||
mod color;
|
mod color;
|
||||||
|
pub use self::color::{
|
||||||
|
Color3D,
|
||||||
|
Color4D
|
||||||
|
};
|
||||||
|
|
|
@ -1,2 +1,4 @@
|
||||||
mod matrix;
|
mod matrix;
|
||||||
|
pub use self::matrix::{
|
||||||
|
Matrix3x3,
|
||||||
|
Matrix4x4};
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
mod memory;
|
mod memory;
|
||||||
|
pub use self::memory::MemoryInfo;
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
mod mesh;
|
mod mesh;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
mod quaternion;
|
mod quaternion;
|
||||||
|
|
||||||
|
pub use self::quaternion::Quaternion;
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
mod string;
|
mod string;
|
||||||
|
pub use self::string::MAXLEN;
|
||||||
|
pub use self::string::Str;
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
mod texel;
|
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
#[derive(Clone, Debug, Copy)]
|
|
||||||
struct Texel {
|
|
||||||
b: u32,
|
|
||||||
g: u32,
|
|
||||||
r: u32,
|
|
||||||
a: u32
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Texel {
|
|
||||||
pub fn new(b_u32: u32, g_u32: u32,
|
|
||||||
r_u32: u32, a_u32: u32) -> Texel {
|
|
||||||
Texel {
|
|
||||||
b: b_u32,
|
|
||||||
g: g_u32,
|
|
||||||
r: r_u32,
|
|
||||||
a: a_u32
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,2 +1,3 @@
|
||||||
mod texture;
|
mod texture;
|
||||||
|
pub use self::texture::Texel;
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
#[derive(Clone, Debug, Copy)]
|
||||||
|
struct Texel {
|
||||||
|
b: u32,
|
||||||
|
g: u32,
|
||||||
|
r: u32,
|
||||||
|
a: u32
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Texel {
|
||||||
|
pub fn new(b_u32: u32, g_u32: u32,
|
||||||
|
r_u32: u32, a_u32: u32) -> Texel {
|
||||||
|
Texel {
|
||||||
|
b: b_u32,
|
||||||
|
g: g_u32,
|
||||||
|
r: r_u32,
|
||||||
|
a: a_u32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,2 +1,2 @@
|
||||||
mod vertex;
|
mod vertex;
|
||||||
|
// pub use self::vertex::
|
||||||
|
|
Loading…
Reference in New Issue