#[non_exhaustive]pub enum DrawError {
MissingBlendConstant,
MissingPipeline,
MissingVertexBuffer {
index: u32,
},
MissingIndexBuffer,
IncompatibleBindGroup {
index: u32,
diff: Vec<String>,
},
VertexBeyondLimit {
last_vertex: u64,
vertex_limit: u64,
slot: u32,
},
VertexOutOfBounds {
step_mode: VertexStepMode,
offset: u64,
limit: u64,
slot: u32,
},
InstanceBeyondLimit {
last_instance: u64,
instance_limit: u64,
slot: u32,
},
IndexBeyondLimit {
last_index: u64,
index_limit: u64,
},
UnmatchedIndexFormats {
pipeline: IndexFormat,
buffer: IndexFormat,
},
BindingSizeTooSmall(LateMinBufferBindingSizeMismatch),
}
Expand description
Error validating a draw call.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
MissingBlendConstant
MissingPipeline
MissingVertexBuffer
MissingIndexBuffer
IncompatibleBindGroup
VertexBeyondLimit
VertexOutOfBounds
InstanceBeyondLimit
IndexBeyondLimit
UnmatchedIndexFormats
BindingSizeTooSmall(LateMinBufferBindingSizeMismatch)
Trait Implementations§
source§impl Error for DrawError
impl Error for DrawError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<DrawError> for RenderPassErrorInner
impl From<DrawError> for RenderPassErrorInner
source§impl From<LateMinBufferBindingSizeMismatch> for DrawError
impl From<LateMinBufferBindingSizeMismatch> for DrawError
source§fn from(source: LateMinBufferBindingSizeMismatch) -> Self
fn from(source: LateMinBufferBindingSizeMismatch) -> Self
Converts to this type from the input type.
source§impl PartialEq for DrawError
impl PartialEq for DrawError
impl Eq for DrawError
impl StructuralPartialEq for DrawError
Auto Trait Implementations§
impl Freeze for DrawError
impl RefUnwindSafe for DrawError
impl Send for DrawError
impl Sync for DrawError
impl Unpin for DrawError
impl UnwindSafe for DrawError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.