pub struct GpuCache {
    now: FrameStamp,
    texture: Texture,
    saved_block_count: usize,
    debug_flags: DebugFlags,
    pending_clear: bool,
    prepared_for_frames: bool,
    requires_frame_build: bool,
    document_frames_to_build: HashSet<DocumentId, BuildHasherDefault<FxHasher>>,
}
Expand description

The main LRU cache interface.

Fields§

§now: FrameStamp

Current FrameId.

§texture: Texture

CPU-side texture allocator.

§saved_block_count: usize

Number of blocks requested this frame that don’t need to be re-uploaded.

§debug_flags: DebugFlags

The current debug flags for the system.

§pending_clear: bool

Whether there is a pending clear to send with the next update.

§prepared_for_frames: bool

Indicates that prepare_for_frames has been called for this group of frames. Used for sanity checks.

§requires_frame_build: bool

This indicates that we performed a cleanup operation which requires all documents to build a frame.

§document_frames_to_build: HashSet<DocumentId, BuildHasherDefault<FxHasher>>

The set of documents which have had frames built in this update. Used for sanity checks.

Implementations§

source§

impl GpuCache

source

pub fn new() -> Self

source

pub fn clear(&mut self)

Drops everything in the GPU cache. Must not be called once gpu cache entries for the next frame have already been requested.

source

pub fn requires_frame_build(&self) -> bool

source

pub fn prepare_for_frames(&mut self)

source

pub fn bookkeep_after_frames(&mut self)

source

pub fn begin_frame(&mut self, stamp: FrameStamp)

Begin a new frame.

source

pub fn invalidate(&mut self, handle: &GpuCacheHandle)

source

pub fn request<'a>( &'a mut self, handle: &'a mut GpuCacheHandle ) -> Option<GpuDataRequest<'a>>

Request a resource be added to the cache. If the resource is already in the cache, None will be returned.

source

pub fn push_per_frame_blocks( &mut self, blocks: &[GpuBlockData] ) -> GpuCacheHandle

source

pub fn push_deferred_per_frame_blocks( &mut self, block_count: usize ) -> GpuCacheHandle

source

pub fn end_frame(&mut self, profile: &mut TransactionProfile) -> FrameStamp

End the frame. Return the list of updates to apply to the device specific cache texture.

source

pub fn should_reclaim_memory(&self) -> bool

Returns true if utilization has been low enough for long enough that we should blow the cache away and rebuild it.

source

pub fn extract_updates(&mut self) -> GpuCacheUpdateList

Extract the pending updates from the cache.

source

pub fn set_debug_flags(&mut self, flags: DebugFlags)

Sets the current debug flags for the system.

source

pub fn get_address(&self, id: &GpuCacheHandle) -> GpuCacheAddress

Get the actual GPU address in the texture for a given slot ID. It’s assumed at this point that the given slot has been requested and built for this frame. Attempting to get the address for a freed or pending slot will panic!

Trait Implementations§

source§

impl MallocSizeOf for GpuCache

source§

fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize

Measure the heap usage of all descendant heap-allocated structures, but not the space taken up by the value itself.
source§

impl Serialize for GpuCache

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.