[][src]Trait processing::texture::Texture2dDataSource

pub trait Texture2dDataSource<'a> {
    type Data: 'a + Send + Copy + Clone;
    fn into_raw(self) -> RawImage2d<'a, Self::Data>;
}

Trait that describes data for a two-dimensional texture.

Associated Types

type Data: 'a + Send + Copy + Clone

The type of each pixel.

Loading content...

Required methods

fn into_raw(self) -> RawImage2d<'a, Self::Data>

Returns the raw representation of the data.

Loading content...

Implementations on Foreign Types

impl<'a, P> Texture2dDataSource<'a> for Vec<Vec<P>> where
    P: PixelValue + Clone
[src]

type Data = P

Loading content...

Implementors

impl<'a, P> Texture2dDataSource<'a> for RawImage2d<'a, P> where
    P: PixelValue + Clone
[src]

type Data = P

Loading content...