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
expected: UniformType | Type expected by the shader. |
obtained: UniformType | Type that you gave. |
LayoutMismatchThe expected layout is totally different from what we have.
Fields
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
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
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
name: String | Name of the field. |
Trait Implementations
impl Debug for LayoutMismatchError[src]
impl Clone for LayoutMismatchError[src]
fn clone(&self) -> LayoutMismatchError
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Error for LayoutMismatchError[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any.