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
TypeMismatch
There is a mismatch in the type of one element.
Fields
expected: UniformType | Type expected by the shader. |
obtained: UniformType | Type that you gave. |
LayoutMismatch
The expected layout is totally different from what we have.
Fields
expected: BlockLayout | Layout expected by the shader. |
obtained: BlockLayout | Layout of the input. |
OffsetMismatch
The 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. |
MemberMismatch
There is a mismatch in a submember of this layout.
This is kind of a hierarchy inside the LayoutMismatchError
s.
Fields
member: String | Name of the field. |
err: Box<LayoutMismatchError> | The sub-error. |
MissingField
A 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.