[][src]Struct coffee::graphics::Canvas

pub struct Canvas { /* fields omitted */ }

An off-screen rendering target.

It can be used both as a Target and as a resource.

Methods

impl Canvas[src]

pub fn new(gpu: &mut Gpu, width: u16, height: u16) -> Result<Canvas>[src]

Creates a new Canvas with the given size.

pub fn load(width: u16, height: u16) -> Task<Canvas>[src]

Creates a Task that produces a new Canvas with the given size.

pub fn width(&self) -> u16[src]

Returns the width of the Canvas.

pub fn height(&self) -> u16[src]

Returns the height of the Canvas.

pub fn as_target<'a>(&'a mut self, gpu: &'a mut Gpu) -> Target<'a>[src]

Views the Canvas as a Target.

pub fn draw<Q: IntoQuad>(&self, quad: Q, target: &mut Target)[src]

Renders the Canvas on the given Target.

pub fn read_pixels(&self, gpu: &mut Gpu) -> DynamicImage[src]

Reads the pixels of the Canvas.

Note: This is a very slow operation.

Trait Implementations

impl Clone for Canvas[src]

impl Debug for Canvas[src]

Auto Trait Implementations

impl !RefUnwindSafe for Canvas

impl Send for Canvas

impl Sync for Canvas

impl Unpin for Canvas

impl !UnwindSafe for Canvas

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,