Type Definition CubeTex
Other items ingrafix_toolbox::GL
type CubeTex<S, F> = Tex<GL_TEXTURE_CUBE_MAP, S, F>;
impl<S: TexSize, F: TexFmt> From<&'_ [&'_ [Image<S, F>; 6]]> for CubeTex<S, F>
fn from(mips: &[&[Image<S, F>; 6]]) -> Self
Performs the conversion.
impl<S: TexSize, F: TexFmt> From<&'_ [Image<S, F>; 6]> for CubeTex<S, F>
fn from(m: &[Image<S, F>; 6]) -> Self
impl<'a, S: TexSize, F: TexFmt> From<&'_ Vec<[Image<S, F>; 6], Global>> for CubeTex<S, F>
fn from(m: &Vec<[Image<S, F>; 6]>) -> Self
impl<'a, S: TexSize, F: TexFmt> From<Vec<[Image<S, F>; 6], Global>> for CubeTex<S, F>
fn from(m: Vec<[Image<S, F>; 6]>) -> Self