[][src]Struct sunshine::texture::Texture

pub struct Texture {
    pub image_width: usize,
    pub image_height: usize,
    pub count: usize,
    pub size: usize,
    // some fields omitted
}

Fields

image_width: usizeimage_height: usizecount: usizesize: usize

Implementations

impl Texture[src]

pub fn new(filename: &str) -> Texture[src]

pub fn get(&self, x: usize, y: usize, idx: usize) -> &RGB[src]

pub fn scale_column(
    &self,
    texture_id: usize,
    texture_coord: usize,
    column_height: usize
) -> Vec<RGB>
[src]

Auto Trait Implementations

impl RefUnwindSafe for Texture

impl Send for Texture

impl Sync for Texture

impl Unpin for Texture

impl UnwindSafe for Texture

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> Pointable for T

type Init = T

The type for initializers.

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.