pub trait VertexAttributeType {
    const A_TYPE: AttributeType;
}

Required Associated Constants§

Implementations on Foreign Types§

source§

impl VertexAttributeType for [i32; 2]

source§

const A_TYPE: AttributeType = AttributeType::I32I32

source§

impl VertexAttributeType for [[f32; 2]; 2]

source§

const A_TYPE: AttributeType = AttributeType::F32x2x2

source§

impl VertexAttributeType for [f32; 2]

source§

const A_TYPE: AttributeType = AttributeType::F32F32

source§

impl VertexAttributeType for [[f32; 3]; 3]

source§

const A_TYPE: AttributeType = AttributeType::F32x3x3

source§

impl VertexAttributeType for f32

source§

const A_TYPE: AttributeType = AttributeType::F32

source§

impl VertexAttributeType for [f32; 3]

source§

const A_TYPE: AttributeType = AttributeType::F32F32F32

source§

impl VertexAttributeType for [f32; 4]

source§

const A_TYPE: AttributeType = AttributeType::F32F32F32F32

source§

impl VertexAttributeType for [i32; 3]

source§

const A_TYPE: AttributeType = AttributeType::I32I32I32

source§

impl VertexAttributeType for i32

source§

const A_TYPE: AttributeType = AttributeType::I32

source§

impl VertexAttributeType for [[f32; 4]; 4]

source§

const A_TYPE: AttributeType = AttributeType::F32x4x4

source§

impl VertexAttributeType for [i32; 4]

source§

const A_TYPE: AttributeType = AttributeType::I32I32I32I32

Implementors§