pub struct Interners {
Show 16 fields pub clip: Interner<ClipIntern>, pub prim: Interner<PrimitiveKeyKind>, pub normal_border: Interner<NormalBorderPrim>, pub image_border: Interner<ImageBorder>, pub image: Interner<Image>, pub yuv_image: Interner<YuvImage>, pub line_decoration: Interner<LineDecoration>, pub linear_grad: Interner<LinearGradient>, pub radial_grad: Interner<RadialGradient>, pub conic_grad: Interner<ConicGradient>, pub picture: Interner<Picture>, pub text_run: Interner<TextRun>, pub filter_data: Interner<FilterDataIntern>, pub backdrop_capture: Interner<BackdropCapture>, pub backdrop_render: Interner<BackdropRender>, pub polygon: Interner<PolygonIntern>,
}
Expand description

This struct contains all items that can be shared between display lists. We want to intern and share the same clips, primitives and other things between display lists so that:

  • GPU cache handles remain valid, reducing GPU cache updates.
  • Comparison of primitives and pictures between two display lists is (a) fast (b) done during scene building.

Fields§

§clip: Interner<ClipIntern>§prim: Interner<PrimitiveKeyKind>§normal_border: Interner<NormalBorderPrim>§image_border: Interner<ImageBorder>§image: Interner<Image>§yuv_image: Interner<YuvImage>§line_decoration: Interner<LineDecoration>§linear_grad: Interner<LinearGradient>§radial_grad: Interner<RadialGradient>§conic_grad: Interner<ConicGradient>§picture: Interner<Picture>§text_run: Interner<TextRun>§filter_data: Interner<FilterDataIntern>§backdrop_capture: Interner<BackdropCapture>§backdrop_render: Interner<BackdropRender>§polygon: Interner<PolygonIntern>

Implementations§

source§

impl Interners

source

fn report_memory(&self, ops: &mut MallocSizeOfOps, r: &mut MemoryReport)

Reports CPU heap memory used by the interners.

source

fn end_frame_and_get_pending_updates(&mut self) -> InternerUpdates

Trait Implementations§

source§

impl AsMut<Interner<BackdropCapture>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<BackdropCapture>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<BackdropRender>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<BackdropRender>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<ClipIntern>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<ClipIntern>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<ConicGradient>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<ConicGradient>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<FilterDataIntern>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<FilterDataIntern>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<Image>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<Image>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<ImageBorder>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<ImageBorder>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<LineDecoration>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<LineDecoration>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<LinearGradient>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<LinearGradient>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<NormalBorderPrim>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<NormalBorderPrim>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<Picture>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<Picture>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<PolygonIntern>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<PolygonIntern>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<PrimitiveKeyKind>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<PrimitiveKeyKind>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<RadialGradient>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<RadialGradient>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<TextRun>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<TextRun>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl AsMut<Interner<YuvImage>> for Interners

source§

fn as_mut(&mut self) -> &mut Interner<YuvImage>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl Default for Interners

source§

fn default() -> Interners

Returns the “default value” for a type. Read more
source§

impl Serialize for Interners

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where F: FnOnce(&Self) -> bool,

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
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.