Enum gfx::render::DrawError
[−]
[src]
pub enum DrawError<E> {
InvalidBatch(E),
MissingTarget(Mask),
BadViewport,
BadVertexCount,
BadIndexCount,
}Draw-time error, showing inconsistencies in draw parameters and data
Variants
InvalidBatch | Tha batch is not valid |
MissingTarget | The |
BadViewport | The viewport either covers zero space or exceeds HW limitations. |
BadVertexCount | Vertex count exceeds HW limitations. |
BadIndexCount | Index count exceeds HW limitations. |