[][src]Struct nobs_vulkanism_headless::fb::framebuffer::Builder

pub struct Builder { /* fields omitted */ }

Methods

impl Builder[src]

Builder for Framebuffer

pub fn new(device: Device, pass: RenderPass) -> Self[src]

Build a new framebuffer for the specified renderpass

pub fn extent(&mut self, extent: Extent2D) -> &mut Self[src]

Sets the extend of all framebuffer attachments

pub fn target(
    &mut self,
    image: Image,
    view: ImageView,
    clear: ClearValue
) -> &mut Self
[src]

Adds the image as framebuffer attachment

Attachments are added in sequence, meaning the attachment at position 0 is set by the first call to target, the one at position 1 by the second call, etc.

pub fn create(&mut self) -> Framebuffer[src]

Creates the framebuffer

Auto Trait Implementations

impl Send for Builder

impl Sync for Builder

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.