Struct webrender::picture::TilePostUpdateContext
source · struct TilePostUpdateContext<'a> {
local_clip_rect: PictureRect,
backdrop: Option<BackdropInfo>,
current_tile_size: DeviceIntSize,
z_id: ZBufferId,
underlays: &'a [ExternalSurfaceDescriptor],
}
Fields§
§local_clip_rect: PictureRect
The local clip rect (in picture space) of the entire picture cache
backdrop: Option<BackdropInfo>
The calculated backdrop information for this cache instance.
current_tile_size: DeviceIntSize
Current size in device pixels of tiles for this cache
z_id: ZBufferId
Pre-allocated z-id to assign to tiles during post_update.
underlays: &'a [ExternalSurfaceDescriptor]
The list of compositor underlays for this picture cache
Auto Trait Implementations§
impl<'a> Freeze for TilePostUpdateContext<'a>
impl<'a> RefUnwindSafe for TilePostUpdateContext<'a>
impl<'a> Send for TilePostUpdateContext<'a>
impl<'a> Sync for TilePostUpdateContext<'a>
impl<'a> Unpin for TilePostUpdateContext<'a>
impl<'a> UnwindSafe for TilePostUpdateContext<'a>
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
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more