Type Alias CubeTex

Source
pub type CubeTex<S, F> = Tex<S, F, GL_TEXTURE_CUBE_MAP>;

Aliased Type§

struct CubeTex<S, F> {
    pub param: TexParam,
    /* private fields */
}

Fields§

§param: TexParam

Trait Implementations§

Source§

impl<S: TexSize, F: TexFmt> From<&[&[Image<S, F>; 6]]> for CubeTex<S, F>

Source§

fn from(mips: &[&[Image<S, F>; 6]]) -> Self

Converts to this type from the input type.
Source§

impl<S: TexSize, F: TexFmt> From<&[[Image<S, F>; 6]]> for CubeTex<S, F>

Source§

fn from(m: &[[Image<S, F>; 6]]) -> Self

Converts to this type from the input type.
Source§

impl<S: TexSize, F: TexFmt> From<&[Image<S, F>; 6]> for CubeTex<S, F>

Source§

fn from(m: &[Image<S, F>; 6]) -> Self

Converts to this type from the input type.