[][src]Struct gfx::texture::ImageInfoCommon

pub struct ImageInfoCommon<F> {
    pub xoffset: u16,
    pub yoffset: u16,
    pub zoffset: u16,
    pub width: u16,
    pub height: u16,
    pub depth: u16,
    pub format: F,
    pub mipmap: u8,
}

Describes a subvolume of a texture, which image data can be uploaded into.

Fields

xoffset: u16yoffset: u16zoffset: u16width: u16height: u16depth: u16format: F

Format of each texel.

mipmap: u8

Which mipmap to select.

Implementations

impl<F> ImageInfoCommon<F>[src]

pub fn get_texel_count(&self) -> usize[src]

Get the total number of texels.

pub fn convert<T>(&self, new_format: T) -> ImageInfoCommon<T>[src]

Convert into a differently typed format.

pub fn is_inside(&self, (u16, u16, u16, AaMode)) -> bool[src]

Check if it fits inside given dimensions.

impl ImageInfoCommon<Format>[src]

pub fn get_byte_count(&self) -> usize[src]

Get the total number of bytes.

Trait Implementations

impl<F> Clone for ImageInfoCommon<F> where
    F: Clone
[src]

impl<F> Copy for ImageInfoCommon<F> where
    F: Copy
[src]

impl<F> Debug for ImageInfoCommon<F> where
    F: Debug
[src]

impl<F> Eq for ImageInfoCommon<F> where
    F: Eq
[src]

impl<F> Hash for ImageInfoCommon<F> where
    F: Hash
[src]

impl<F> Ord for ImageInfoCommon<F> where
    F: Ord
[src]

impl<F> PartialEq<ImageInfoCommon<F>> for ImageInfoCommon<F> where
    F: PartialEq<F>, 
[src]

impl<F> PartialOrd<ImageInfoCommon<F>> for ImageInfoCommon<F> where
    F: PartialOrd<F>, 
[src]

impl<F> StructuralEq for ImageInfoCommon<F>[src]

impl<F> StructuralPartialEq for ImageInfoCommon<F>[src]

Auto Trait Implementations

impl<F> RefUnwindSafe for ImageInfoCommon<F> where
    F: RefUnwindSafe

impl<F> Send for ImageInfoCommon<F> where
    F: Send

impl<F> Sync for ImageInfoCommon<F> where
    F: Sync

impl<F> Unpin for ImageInfoCommon<F> where
    F: Unpin

impl<F> UnwindSafe for ImageInfoCommon<F> where
    F: UnwindSafe

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> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.