Struct epaint::image::ImageDelta
source · pub struct ImageDelta {
pub image: ImageData,
pub options: TextureOptions,
pub pos: Option<[usize; 2]>,
}
Expand description
A change to an image.
Either a whole new image, or an update to a rectangular region of it.
Fields§
§image: ImageData
What to set the texture to.
If Self::pos
is None
, this describes the whole texture.
If Self::pos
is Some
, this describes a patch of the whole image starting at Self::pos
.
options: TextureOptions
§pos: Option<[usize; 2]>
If None
, set the whole texture to Self::image
.
If Some(pos)
, update a sub-region of an already allocated texture with the patch in Self::image
.
Implementations§
source§impl ImageDelta
impl ImageDelta
Trait Implementations§
source§impl Clone for ImageDelta
impl Clone for ImageDelta
source§fn clone(&self) -> ImageDelta
fn clone(&self) -> ImageDelta
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<ImageDelta> for ImageDelta
impl PartialEq<ImageDelta> for ImageDelta
source§fn eq(&self, other: &ImageDelta) -> bool
fn eq(&self, other: &ImageDelta) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.