Struct nannou::ui::backend::glium::glium::framebuffer::SimpleFrameBuffer [] [src]

pub struct SimpleFrameBuffer<'a> { /* fields omitted */ }

A framebuffer which has only one color attachment.

Methods

impl<'a> SimpleFrameBuffer<'a>
[src]

[src]

Creates a SimpleFrameBuffer with a single color attachment and no depth nor stencil buffer.

[src]

Creates a SimpleFrameBuffer with a single color attachment and a depth buffer, but no stencil buffer.

[src]

Creates a SimpleFrameBuffer with a single color attachment and no depth nor stencil buffer.

[src]

Creates a SimpleFrameBuffer with a single color attachment, a depth buffer, and a stencil buffer.

[src]

Creates a SimpleFrameBuffer with a single color attachment and no depth nor stencil buffer.

[src]

Creates a SimpleFrameBuffer with a single color attachment and a stencil buffer, but no depth buffer.

[src]

Creates a SimpleFrameBuffer with a single color attachment and a stencil buffer, but no depth buffer.

[src]

Creates a SimpleFrameBuffer with a single color attachment and a depth-stencil buffer.

[src]

Creates a SimpleFrameBuffer with a single color attachment and a depth-stencil buffer.

Trait Implementations

impl<'a> Surface for SimpleFrameBuffer<'a>
[src]

[src]

Clears some attachments of the target.

[src]

Returns the dimensions in pixels of the target.

[src]

Returns the number of bits of each pixel of the depth buffer. Read more

[src]

Returns the number of bits of each pixel of the stencil buffer. Read more

[src]

Draws. Read more

[src]

Copies a rectangle of pixels from this surface to another surface. Read more

[src]

Blits from the default framebuffer.

[src]

Blits from a simple framebuffer.

[src]

Blits from a multi-output framebuffer.

[src]

Clears the color attachment of the target.

[src]

Clears the color attachment of the target. The color is in sRGB format.

[src]

Clears the depth attachment of the target.

[src]

Clears the stencil attachment of the target.

[src]

Clears the color and depth attachments of the target.

[src]

Clears the color and depth attachments of the target. The color is in sRGB format.

[src]

Clears the color and stencil attachments of the target.

[src]

Clears the color and stencil attachments of the target. The color is in sRGB format.

[src]

Clears the depth and stencil attachments of the target.

[src]

Clears the color, depth and stencil attachments of the target.

[src]

Clears the color, depth and stencil attachments of the target. The color is in sRGB format.

[src]

Returns true if the surface has a depth buffer available.

[src]

Returns true if the surface has a stencil buffer available.

[src]

Copies the entire surface to a target surface. See blit_color.

[src]

Copies the entire surface to the entire target. See blit_color.