[][src]Struct rgx::kit::sprite2d::Batch

pub struct Batch {
    pub w: u32,
    pub h: u32,
    pub size: usize,
    // some fields omitted
}

Batch

Fields

w: u32h: u32size: usize

Methods

impl Batch[src]

pub fn new(w: u32, h: u32) -> Self[src]

pub fn singleton(
    w: u32,
    h: u32,
    src: Rect<f32>,
    dst: Rect<f32>,
    depth: ZDepth,
    rgba: Rgba,
    opa: f32,
    rep: Repeat
) -> Self
[src]

pub fn add(
    &mut self,
    src: Rect<f32>,
    dst: Rect<f32>,
    depth: ZDepth,
    rgba: Rgba,
    opacity: f32,
    rep: Repeat
)
[src]

pub fn finish(self, r: &Renderer) -> VertexBuffer[src]

pub fn clear(&mut self)[src]

pub fn offset(&mut self, x: f32, y: f32)[src]

pub fn is_empty(&self) -> bool[src]

Trait Implementations

impl Clone for Batch[src]

impl Debug for Batch[src]

Auto Trait Implementations

impl Send for Batch

impl Sync for Batch

impl Unpin for Batch

impl UnwindSafe for Batch

impl RefUnwindSafe for Batch

Blanket Implementations

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

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

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 = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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