Struct luminance::framebuffer::Framebuffer[][src]

pub struct Framebuffer<B: ?Sized, D, CS, DS> where
    B: FramebufferBackend<D>,
    D: Dimensionable,
    CS: ColorSlot<B, D>,
    DS: DepthSlot<B, D>, 
{ /* fields omitted */ }
Expand description

Typed framebuffers.

Parametricity

Implementations

Create a new Framebuffer.

The mipmaps argument allows to pass the number of extra precision layers the texture will be created with. A precision layer contains the same image as the base layer but in a lower resolution. Currently, the way the resolution is computed depends on the backend, but it is safe to assume that it’s logarithmic in base 2 — i.e. at each layer depth, the resolution is divided by 2 on each axis.

Errors

It is possible that the Framebuffer cannot be created. The FramebufferError provides the reason why.

Notes

You might be interested in the GraphicsContext::new_framebuffer function instead, which is the exact same function, but benefits from more type inference (based on &mut C).

Get the size of the framebuffer.

Access the carried ColorSlot.

Access the carried DepthSlot.

Consume this framebuffer and return the carried slots.

Consume this framebuffer and return the carried ColorSlot.

Consume this framebuffer and return the carried DepthSlot.

Get the back buffer from the input context and the required resolution.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.