Framebuffer

Struct Framebuffer 

Source
pub struct Framebuffer {
    pub texture: Texture,
    pub depth: DepthBuffer,
}
Expand description

Off-screen framebuffer. Can be used as a render target in render passes.

Fields§

§texture: Texture§depth: DepthBuffer

Implementations§

Source§

impl Framebuffer

Source

pub fn size(&self) -> usize

Size in pixels of the framebuffer.

Source

pub fn width(&self) -> u32

Framebuffer width, in pixels.

Source

pub fn height(&self) -> u32

Framebuffer height, in pixels.

Trait Implementations§

Source§

impl Bind for Framebuffer

Source§

fn binding(&self, index: u32) -> BindGroupEntry<'_>

Source§

impl Canvas for Framebuffer

Source§

type Color = Bgra8

Source§

fn clear( &self, color: Self::Color, device: &mut Device, encoder: &mut CommandEncoder, )

Source§

fn fill( &self, buf: &[Self::Color], device: &mut Device, encoder: &mut CommandEncoder, )

Source§

fn transfer( &self, buf: &[Self::Color], rect: SizedRect<i32, ScreenSpace>, device: &mut Device, encoder: &mut CommandEncoder, )

Source§

fn blit( &self, from: SizedRect<u32, ScreenSpace>, dst: SizedRect<u32, ScreenSpace>, encoder: &mut CommandEncoder, )

Source§

impl Debug for Framebuffer

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<Framebuffer> for Texture

Source§

fn from(fb: Framebuffer) -> Self

Converts to this type from the input type.
Source§

impl RenderTarget for Framebuffer

Source§

fn color_target(&self) -> &TextureView

Color component.
Source§

fn zdepth_target(&self) -> &TextureView

Depth component.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> Downcast<T> for T

Source§

fn downcast(&self) -> &T

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Upcast<T> for T

Source§

fn upcast(&self) -> Option<&T>