[][src]Struct azul_core::app_resources::ImageDescriptor

pub struct ImageDescriptor {
    pub format: RawImageFormat,
    pub dimensions: (usize, usize),
    pub stride: Option<i32>,
    pub offset: i32,
    pub flags: ImageDescriptorFlags,
}

Metadata (but not storage) describing an image In WebRender.

Fields

format: RawImageFormat

Format of the image data.

dimensions: (usize, usize)

Width and height of the image data, in pixels.

stride: Option<i32>

The number of bytes from the start of one row to the next. If non-None, compute_stride will return this value, otherwise it returns width * bpp. Different source of images have different alignment constraints for rows, so the stride isn't always equal to width * bpp.

offset: i32

Offset in bytes of the first pixel of this image in its backing buffer. This is used for tiling, wherein WebRender extracts chunks of input images in order to cache, manipulate, and render them individually. This offset tells the texture upload machinery where to find the bytes to upload for this tile. Non-tiled images generally set this to zero.

flags: ImageDescriptorFlags

Various bool flags related to this descriptor.

Trait Implementations

impl Clone for ImageDescriptor[src]

impl Copy for ImageDescriptor[src]

impl Debug for ImageDescriptor[src]

impl Eq for ImageDescriptor[src]

impl Hash for ImageDescriptor[src]

impl Ord for ImageDescriptor[src]

impl PartialEq<ImageDescriptor> for ImageDescriptor[src]

impl PartialOrd<ImageDescriptor> for ImageDescriptor[src]

impl StructuralEq for ImageDescriptor[src]

impl StructuralPartialEq for ImageDescriptor[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> 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.