[][src]Struct wgpu::VertexAttributeDescriptor

#[repr(C)]pub struct VertexAttributeDescriptor {
    pub offset: u64,
    pub format: VertexFormat,
    pub shader_location: u32,
}
[]

Vertex inputs (attributes) to shaders.

Arrays of these can be made with the vertex_attr_array macro. Vertex attributes are assumed to be tightly packed.

Fields

offset: u64
[]

Byte offset of the start of the input

format: VertexFormat
[]

Format of the input

shader_location: u32
[]

Location for this input. Must match the location in the shader.

Trait Implementations

impl Clone for VertexAttributeDescriptor[src][+]

impl Debug for VertexAttributeDescriptor[src][+]

impl Eq for VertexAttributeDescriptor[src]

impl Hash for VertexAttributeDescriptor[src][+]

impl PartialEq<VertexAttributeDescriptor> for VertexAttributeDescriptor[src][+]

impl StructuralEq for VertexAttributeDescriptor[src]

impl StructuralPartialEq for VertexAttributeDescriptor[src]

Auto Trait Implementations

impl RefUnwindSafe for VertexAttributeDescriptor

impl Send for VertexAttributeDescriptor

impl Sync for VertexAttributeDescriptor

impl Unpin for VertexAttributeDescriptor

impl UnwindSafe for VertexAttributeDescriptor

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> Instrument for T[src][+]

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

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.