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
Required Methods
fn into_raw(self) -> RawImage3d<'a, Self::Data>
Returns the raw representation of the data.
Implementors
impl<'a, P: PixelValue + Clone> Texture3dDataSource<'a> for Vec<Vec<Vec<P>>>
impl<'a, P: PixelValue + Clone> Texture3dDataSource<'a> for RawImage3d<'a, P>