[−][src]Enum wgpu::VertexFormat
pub enum VertexFormat { Uchar2, Uchar4, Char2, Char4, Uchar2Norm, Uchar4Norm, Char2Norm, Char4Norm, Ushort2, Ushort4, Short2, Short4, Ushort2Norm, Ushort4Norm, Short2Norm, Short4Norm, Half2, Half4, Float, Float2, Float3, Float4, Uint, Uint2, Uint3, Uint4, Int, Int2, Int3, Int4, }
Vertex Format for a Vertex Attribute (input).
Variants
Two unsigned bytes (u8). uvec2
in shaders.
Four unsigned bytes (u8). uvec4
in shaders.
Two signed bytes (i8). ivec2
in shaders.
Four signed bytes (i8). ivec4
in shaders.
Two unsigned bytes (u8). [0, 255] converted to float [0, 1] vec2
in shaders.
Four unsigned bytes (u8). [0, 255] converted to float [0, 1] vec4
in shaders.
Two signed bytes (i8). [-127, 127] converted to float [-1, 1] vec2
in shaders.
Four signed bytes (i8). [-127, 127] converted to float [-1, 1] vec4
in shaders.
Two unsigned shorts (u16). uvec2
in shaders.
Four unsigned shorts (u16). uvec4
in shaders.
Two signed shorts (i16). ivec2
in shaders.
Four signed shorts (i16). ivec4
in shaders.
Two unsigned shorts (u16). [0, 65535] converted to float [0, 1] vec2
in shaders.
Four unsigned shorts (u16). [0, 65535] converted to float [0, 1] vec4
in shaders.
Two signed shorts (i16). [-32767, 32767] converted to float [-1, 1] vec2
in shaders.
Four signed shorts (i16). [-32767, 32767] converted to float [-1, 1] vec4
in shaders.
Two half-precision floats (no Rust equiv). vec2
in shaders.
Four half-precision floats (no Rust equiv). vec4
in shaders.
One single-precision float (f32). float
in shaders.
Two single-precision floats (f32). vec2
in shaders.
Three single-precision floats (f32). vec3
in shaders.
Four single-precision floats (f32). vec4
in shaders.
One unsigned int (u32). uint
in shaders.
Two unsigned ints (u32). uvec2
in shaders.
Three unsigned ints (u32). uvec3
in shaders.
Four unsigned ints (u32). uvec4
in shaders.
One signed int (i32). int
in shaders.
Two signed ints (i32). ivec2
in shaders.
Three signed ints (i32). ivec3
in shaders.
Four signed ints (i32). ivec4
in shaders.
Implementations
impl VertexFormat
[src][−]
Trait Implementations
impl Clone for VertexFormat
[src][+]
impl Copy for VertexFormat
[src]
impl Debug for VertexFormat
[src][+]
impl Eq for VertexFormat
[src]
impl Hash for VertexFormat
[src][+]
impl PartialEq<VertexFormat> for VertexFormat
[src][+]
impl StructuralEq for VertexFormat
[src]
impl StructuralPartialEq for VertexFormat
[src]
Auto Trait Implementations
impl RefUnwindSafe for VertexFormat
impl Send for VertexFormat
impl Sync for VertexFormat
impl Unpin for VertexFormat
impl UnwindSafe for VertexFormat
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T> Instrument for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,