Enum gfx::render::mesh::Error
[−]
[src]
pub enum Error { AttributeMissing(String), AttributeType(String, BaseType), AttributeIndex(AttributeIndex), ShaderInputIndex(usize), }
Describes kinds of errors that may occur in the mesh linking
Variants
AttributeMissing | A required attribute was missing. |
AttributeType | An attribute's type from the vertex format differed from the type used in the shader. |
AttributeIndex | An attribute index is out of supported bounds |
ShaderInputIndex | An input index is out of supported bounds |