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

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

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>,
    zdepth: ZDepth,
    rgba: Rgba,
    alpha: f32,
    repeat: Repeat
) -> Self
[src]

pub fn push(&mut self, sprite: Sprite)[src]

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

pub fn vertices(&self) -> Vec<Vertex>[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 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> 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.