[][src]Struct three_d::core::texture::Texture2DArray

pub struct Texture2DArray {
    pub width: usize,
    pub height: usize,
    pub depth: usize,
    // some fields omitted
}

Fields

width: usizeheight: usizedepth: usize

Implementations

impl Texture2DArray[src]

pub fn new(
    gl: &Gl,
    width: usize,
    height: usize,
    depth: usize,
    min_filter: Interpolation,
    mag_filter: Interpolation,
    mip_map_filter: Option<Interpolation>,
    wrap_s: Wrapping,
    wrap_t: Wrapping,
    format: Format
) -> Result<Self, Error>
[src]

Trait Implementations

impl Drop for Texture2DArray[src]

impl Texture for Texture2DArray[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.