[][src]Struct webrender_api::ImageDescriptor

pub struct ImageDescriptor {
    pub format: ImageFormat,
    pub size: DeviceIntSize,
    pub stride: Option<i32>,
    pub offset: i32,
    pub is_opaque: bool,
    pub allow_mipmaps: bool,
}

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

Fields

format: ImageFormat

Format of the image data.

size: DeviceIntSize

Width and length 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.

is_opaque: bool

Whether this image is opaque, or has an alpha channel. Avoiding blending for opaque surfaces is an important optimization.

allow_mipmaps: bool

Whether to allow the driver to automatically generate mipmaps. If images are already downscaled appropriately, mipmap generation can be wasted work, and cause performance problems on some cards/drivers.

See https://github.com/servo/webrender/pull/2555/

Methods

impl ImageDescriptor[src]

pub fn new(
    width: i32,
    height: i32,
    format: ImageFormat,
    is_opaque: bool,
    allow_mipmaps: bool
) -> Self
[src]

Mints a new ImageDescriptor.

pub fn compute_stride(&self) -> i32[src]

Returns the stride, either via an explicit stride stashed on the object or by the default computation.

pub fn compute_total_size(&self) -> i32[src]

Computes the total size of the image, in bytes.

pub fn full_rect(&self) -> DeviceIntRect[src]

Computes the bounding rectangle for the image, rooted at (0, 0).

Trait Implementations

impl Clone for ImageDescriptor[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for ImageDescriptor[src]

impl PartialEq<ImageDescriptor> for ImageDescriptor[src]

impl Debug for ImageDescriptor[src]

impl Serialize for ImageDescriptor[src]

impl<'de> Deserialize<'de> for ImageDescriptor[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]