[][src]Struct coffee::graphics::Batch

pub struct Batch { /* fields omitted */ }

A collection of quads that will be drawn all at once using the same Image.

Methods

impl Batch[src]

pub fn new(image: Image) -> Self[src]

Creates a new Batch using the given Image.

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

Adds a quad to the Batch.

pub fn draw(&self, target: &mut Target)[src]

Draws the Batch on the given Target.

pub fn clear(&mut self)[src]

Clears the Batch contents.

This is useful to avoid creating a new batch every frame and reallocating the same memory.

Trait Implementations

impl Debug for Batch[src]

impl<Q: IntoQuad> Extend<Q> for Batch[src]

impl<Q: IntoQuad + Send> ParallelExtend<Q> for Batch[src]

Extends the Batch using a parallel iterator from rayon.

If you are dealing with many thousands of quads, par_extend can help you speed up your drawing by using multiple threads to populate a Batch.

Auto Trait Implementations

impl !RefUnwindSafe for Batch

impl Send for Batch

impl Sync for Batch

impl Unpin for Batch

impl !UnwindSafe for Batch

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, 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>,