pub struct ImageDescriptor {
pub format: RawImageFormat,
pub dimensions: (usize, usize),
pub stride: Option<i32>,
pub offset: i32,
pub flags: ImageDescriptorFlags,
}
Expand description
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§
Source§impl Clone for ImageDescriptor
impl Clone for ImageDescriptor
Source§fn clone(&self) -> ImageDescriptor
fn clone(&self) -> ImageDescriptor
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ImageDescriptor
impl Debug for ImageDescriptor
Source§impl Hash for ImageDescriptor
impl Hash for ImageDescriptor
Source§impl Ord for ImageDescriptor
impl Ord for ImageDescriptor
Source§fn cmp(&self, other: &ImageDescriptor) -> Ordering
fn cmp(&self, other: &ImageDescriptor) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for ImageDescriptor
impl PartialEq for ImageDescriptor
Source§impl PartialOrd for ImageDescriptor
impl PartialOrd for ImageDescriptor
impl Copy for ImageDescriptor
impl Eq for ImageDescriptor
impl StructuralPartialEq for ImageDescriptor
Auto Trait Implementations§
impl Freeze for ImageDescriptor
impl RefUnwindSafe for ImageDescriptor
impl Send for ImageDescriptor
impl Sync for ImageDescriptor
impl Unpin for ImageDescriptor
impl UnwindSafe for ImageDescriptor
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)