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

pub struct Framebuffer {
    pub pass: RenderPass,
    pub handle: Framebuffer,
    pub extent: Extent2D,
    pub images: Vec<Image>,
    pub views: Vec<ImageView>,
    pub clear: Vec<ClearValue>,
    // some fields omitted
}

Wrapper for a vulkan framebuffer

Owns the images and image views for all framebuffer attachments

Fields

pass: RenderPasshandle: Framebufferextent: Extent2Dimages: Vec<Image>views: Vec<ImageView>clear: Vec<ClearValue>

Methods

impl Framebuffer[src]

pub fn set_clear(&mut self, clear: &[ClearValue])[src]

Set the clear values for all attachments

pub fn begin_area(&self, area: Rect2D) -> RenderpassBegin[src]

Returns a render pass begin command

The returned command is configured to draw in the specified area.

pub fn begin(&self) -> RenderpassBegin[src]

Returns a render pass begin command

pub fn end(&self) -> RenderpassEnd[src]

Returns a render pass end command

Trait Implementations

impl Drop for Framebuffer[src]

Auto Trait Implementations

impl Send for Framebuffer

impl Sync for Framebuffer

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.