Struct webrender::RenderResults
source · pub struct RenderResults {
pub stats: RendererStats,
pub dirty_rects: Vec<DeviceIntRect>,
pub picture_cache_debug: PictureCacheDebugInfo,
}
Expand description
Return type from render(), which contains some repr(C) statistics as well as some non-repr(C) data.
Fields§
§stats: RendererStats
Statistics about the frame that was rendered.
dirty_rects: Vec<DeviceIntRect>
A list of the device dirty rects that were updated this frame. TODO(gw): This is an initial interface, likely to change in future. TODO(gw): The dirty rects here are currently only useful when scrolling is not occurring. They are still correct in the case of scrolling, but will be very large (until we expose proper OS compositor support where the dirty rects apply to a specific picture cache slice / OS compositor surface).
picture_cache_debug: PictureCacheDebugInfo
Information about the state of picture cache tiles. This is only allocated and stored if config.testing is true (such as wrench)
Trait Implementations§
source§impl Debug for RenderResults
impl Debug for RenderResults
source§impl Default for RenderResults
impl Default for RenderResults
source§fn default() -> RenderResults
fn default() -> RenderResults
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RenderResults
impl RefUnwindSafe for RenderResults
impl Send for RenderResults
impl Sync for RenderResults
impl Unpin for RenderResults
impl UnwindSafe for RenderResults
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