[][src]Struct rendy_texture::Texture

pub struct Texture<B: Backend> { /* fields omitted */ }

Static image. Can be loaded from various of formats.

Methods

impl<B> Texture<B> where
    B: Backend, 
[src]

pub fn image(&self) -> &Handle<Image<B>>[src]

Get image handle.

pub fn sampler(&self) -> &Handle<Sampler<B>>[src]

Get sampler handle.

pub fn view(&self) -> &ImageView<B>[src]

Get reference to image view.

pub fn view_mut(&mut self) -> &mut ImageView<B>[src]

Get mutable reference to image view.

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

Get whether texture has premultiplied alpha

Trait Implementations

impl<B: Debug + Backend> Debug for Texture<B>[src]

Auto Trait Implementations

impl<B> Send for Texture<B> where
    <B as Backend>::Image: Send + Sync,
    <B as Backend>::ImageView: Send,
    <B as Backend>::Sampler: Send + Sync

impl<B> Sync for Texture<B> where
    <B as Backend>::Image: Send + Sync,
    <B as Backend>::ImageView: Send + Sync,
    <B as Backend>::Sampler: Send + Sync

impl<B> Unpin for Texture<B> where
    <B as Backend>::ImageView: Unpin

impl<B> UnwindSafe for Texture<B> where
    <B as Backend>::Image: RefUnwindSafe,
    <B as Backend>::ImageView: UnwindSafe,
    <B as Backend>::Memory: RefUnwindSafe,
    <B as Backend>::Sampler: RefUnwindSafe

impl<B> RefUnwindSafe for Texture<B> where
    <B as Backend>::Image: RefUnwindSafe,
    <B as Backend>::ImageView: RefUnwindSafe,
    <B as Backend>::Memory: RefUnwindSafe,
    <B as Backend>::Sampler: RefUnwindSafe

Blanket Implementations

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

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

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