[][src]Struct nannou::frame::ViewFramebufferObject

pub struct ViewFramebufferObject { /* fields omitted */ }

A helper type for managing a framebuffer associated with a window's view function.

Creating and maintaining the framebuffer that targets the Frames image can be a tedious task that requires a lot of boilerplate code. This type simplifies the process with a single update method that creates or recreates the framebuffer if any of the following conditions are met:

  • The update method is called for the first time.
  • The frame.image_is_new() method indicates that the swapchain or its images have recently been recreated and the framebuffer should be recreated accordingly.
  • The given render pass is different to that which was used to create the existing framebuffer.

Methods

impl ViewFramebufferObject[src]

pub fn update<R, F, A>(
    &mut self,
    frame: &Frame,
    render_pass: R,
    builder: F
) -> Result<(), FramebufferCreationError> where
    R: 'static + RenderPassAbstract + Send + Sync,
    F: FnOnce(FramebufferBuilder<R, ()>, Arc<AttachmentImage>) -> FramebufferBuilderResult<R, A>,
    A: 'static + AttachmentsList + Send + Sync
[src]

Ensure the framebuffer is up to date with the render pass and frame's image.

Trait Implementations

impl Default for ViewFramebufferObject[src]

impl Deref for ViewFramebufferObject[src]

type Target = Fbo

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Content for T[src]

impl<T> SafeBorrow<T> for T[src]

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.