Enum glium::uniforms::LayoutMismatchError
[−]
[src]
pub enum LayoutMismatchError {
TypeMismatch {
expected: UniformType,
obtained: UniformType,
},
LayoutMismatch {
expected: BlockLayout,
obtained: BlockLayout,
},
OffsetMismatch {
expected: usize,
obtained: usize,
},
MemberMismatch {
member: String,
err: Box<LayoutMismatchError>,
},
MissingField {
name: String,
},
}Error about a block layout mismatch.
Variants
TypeMismatchThere is a mismatch in the type of one element.
Fields of TypeMismatch
expected: UniformType | Type expected by the shader. |
obtained: UniformType | Type that you gave. |
LayoutMismatchThe expected layout is totally different from what we have.
Fields of LayoutMismatch
expected: BlockLayout | Layout expected by the shader. |
obtained: BlockLayout | Layout of the input. |
OffsetMismatchThe type of data is good, but there is a misalignment.
Fields of OffsetMismatch
expected: usize | Expected offset of a member. |
obtained: usize | Offset of the same member in the input. |
MemberMismatchThere is a mismatch in a submember of this layout.
This is kind of a hierarchy inside the LayoutMismatchErrors.
Fields of MemberMismatch
member: String | Name of the field. |
err: Box<LayoutMismatchError> | The sub-error. |
MissingFieldA field is missing in either the expected of the input data layout.
Fields of MissingField
name: String | Name of the field. |
Trait Implementations
impl Clone for LayoutMismatchError[src]
fn clone(&self) -> LayoutMismatchError[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for LayoutMismatchError[src]
impl Error for LayoutMismatchError[src]
fn description(&self) -> &str[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>[src]
The lower-level cause of this error, if any. Read more