Enum meliusgfx::material::AttributeType[][src]

pub enum AttributeType {
    Float1(f32),
    Float2(f32f32),
    Float3(f32f32f32),
    Float4(f32f32f32f32),
    Int1(i32),
    Int2(i32i32),
    Int3(i32i32i32),
    Int4(i32i32i32i32),
    UInt1(u32),
    UInt2(u32u32),
    UInt3(u32u32u32),
    UInt4(u32u32u32u32),
    VecFloat1(i32*const f32),
    VecFloat2(i32*const f32),
    VecFloat3(i32*const f32),
    VecFloat4(i32*const f32),
    VecInt1(i32*const i32),
    VecInt2(i32*const i32),
    VecInt3(i32*const i32),
    VecInt4(i32*const i32),
    VecUInt1(i32*const u32),
    VecUInt2(i32*const u32),
    VecUInt3(i32*const u32),
    VecUInt4(i32*const u32),
    Matrix2(*const f32),
    Matrix3(*const f32),
    Matrix4(*const f32),
    Matrix2x3(*const f32),
    Matrix3x2(*const f32),
    Matrix2x4(*const f32),
    Matrix4x2(*const f32),
    Matrix3x4(*const f32),
    Matrix4x3(*const f32),
}

Variants

Float1(f32)
Float2(f32f32)
Float3(f32f32f32)
Float4(f32f32f32f32)
Int1(i32)
Int2(i32i32)
Int3(i32i32i32)
Int4(i32i32i32i32)
UInt1(u32)
UInt2(u32u32)
UInt3(u32u32u32)
UInt4(u32u32u32u32)
VecFloat1(i32*const f32)
VecFloat2(i32*const f32)
VecFloat3(i32*const f32)
VecFloat4(i32*const f32)
VecInt1(i32*const i32)
VecInt2(i32*const i32)
VecInt3(i32*const i32)
VecInt4(i32*const i32)
VecUInt1(i32*const u32)
VecUInt2(i32*const u32)
VecUInt3(i32*const u32)
VecUInt4(i32*const u32)
Matrix2(*const f32)
Matrix3(*const f32)
Matrix4(*const f32)
Matrix2x3(*const f32)
Matrix3x2(*const f32)
Matrix2x4(*const f32)
Matrix4x2(*const f32)
Matrix3x4(*const f32)
Matrix4x3(*const f32)

Trait Implementations

impl Clone for AttributeType[src]

impl Copy for AttributeType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.