Enum wgpu_core::command::DrawError [−][src]
pub enum DrawError {
MissingBlendConstant,
MissingPipeline,
MissingVertexBuffer {
index: u32,
},
MissingIndexBuffer,
IncompatibleBindGroup {
index: u32,
},
VertexBeyondLimit {
last_vertex: u32,
vertex_limit: u32,
slot: u32,
},
InstanceBeyondLimit {
last_instance: u32,
instance_limit: u32,
slot: u32,
},
IndexBeyondLimit {
last_index: u32,
index_limit: u32,
},
UnmatchedIndexFormats {
pipeline: IndexFormat,
buffer: IndexFormat,
},
}Error validating a draw call.
Variants
Show fields
Fields of MissingVertexBuffer
index: u32Show fields
Fields of IncompatibleBindGroup
index: u32Show fields
Fields of UnmatchedIndexFormats
pipeline: IndexFormatbuffer: IndexFormatTrait Implementations
impl StructuralPartialEq for DrawError[src]
impl StructuralPartialEq for DrawError[src]Auto Trait Implementations
impl RefUnwindSafe for DrawError
impl RefUnwindSafe for DrawErrorimpl UnwindSafe for DrawError
impl UnwindSafe for DrawError