Trait glium::texture::Texture3dDataSource [] [src]

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

Trait that describes data for a two-dimensional texture.

Associated Types

[]

The type of each pixel.

Required Methods

[]

Returns the raw representation of the data.

Implementations on Foreign Types

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

Implementors