[][src]Enum bevy_render::draw::RenderCommand

pub enum RenderCommand {
    SetPipeline {
        pipeline: Handle<PipelineDescriptor>,
    },
    SetVertexBuffer {
        slot: u32,
        buffer: BufferId,
        offset: u64,
    },
    SetIndexBuffer {
        buffer: BufferId,
        offset: u64,
    },
    SetBindGroup {
        index: u32,
        bind_group: BindGroupId,
        dynamic_uniform_indices: Option<Arc<Vec<u32>>>,
    },
    DrawIndexed {
        indices: Range<u32>,
        base_vertex: i32,
        instances: Range<u32>,
    },
}

A queued command for the renderer

Variants

SetPipeline

Fields of SetPipeline

pipeline: Handle<PipelineDescriptor>
SetVertexBuffer

Fields of SetVertexBuffer

slot: u32buffer: BufferIdoffset: u64
SetIndexBuffer

Fields of SetIndexBuffer

buffer: BufferIdoffset: u64
SetBindGroup

Fields of SetBindGroup

index: u32bind_group: BindGroupIddynamic_uniform_indices: Option<Arc<Vec<u32>>>
DrawIndexed

Fields of DrawIndexed

indices: Range<u32>base_vertex: i32instances: Range<u32>

Trait Implementations

impl Clone for RenderCommand[src]

impl Debug for RenderCommand[src]

impl Eq for RenderCommand[src]

impl PartialEq<RenderCommand> for RenderCommand[src]

impl StructuralEq for RenderCommand[src]

impl StructuralPartialEq for RenderCommand[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

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

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

impl<T> Resource for T where
    T: 'static + Send + Sync
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,