Enum glium::framebuffer::ValidationError [] [src]

pub enum ValidationError {
    EmptyFramebufferObjectsNotSupported,
    EmptyFramebufferUnsupportedDimensions,
    DimensionsMismatchNotSupported,
    SamplesCountMismatch,
    TooManyColorAttachments {
        maximum: usize,
        obtained: usize,
    },
}

An error that can happen while validating attachments.

Variants

EmptyFramebufferObjectsNotSupported

You requested an empty framebuffer object, but they are not supported.

EmptyFramebufferUnsupportedDimensions

The requested characteristics of an empty framebuffer object are out of range.

DimensionsMismatchNotSupported

The backend doesn't support attachments with various dimensions.

Note that almost all OpenGL implementations support attachments with various dimensions. Only very old versions don't.

SamplesCountMismatch

All attachments must have the same number of samples.

TooManyColorAttachments

Backends only support a certain number of color attachments.

Fields

maximum: usize

Maximum number of attachments.

obtained: usize

Number of attachments that were given.

Trait Implementations

impl Eq for ValidationError
[src]

impl PartialEq for ValidationError
[src]

fn eq(&self, __arg_0: &ValidationError) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &ValidationError) -> bool

This method tests for !=.

impl Debug for ValidationError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for ValidationError
[src]

fn clone(&self) -> ValidationError

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 Copy for ValidationError
[src]

impl Display for ValidationError
[src]

fn fmt(&self, fmt: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Error for ValidationError
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>
1.0.0

The lower-level cause of this error, if any.