Trait glium::texture::Texture1dDataSource [] [src]

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

Trait that describes data for a one-dimensional texture.

Associated Types

type Data: Send + Copy + Clone + 'a

The type of each pixel.

Required Methods

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

Returns the raw representation of the data.

Implementors