wgpu_core::track

Type Alias UsageScopePool

Source
pub(crate) type UsageScopePool = Mutex<Vec<(BufferUsageScope, TextureUsageScope)>>;
Expand description

A pool for storing the memory used by UsageScopes. We take and store this memory when the scope is dropped to avoid reallocating. The memory required only grows and allocation cost is significant when a large number of resources have been used.

Aliased Type§

struct UsageScopePool(Mutex<RawMutex, Vec<(BufferUsageScope, TextureUsageScope)>>);

Fields§

§0: Mutex<RawMutex, Vec<(BufferUsageScope, TextureUsageScope)>>

Implementations

Source§

impl<T> Mutex<T>

Source

pub fn new(_rank: LockRank, value: T) -> Mutex<T>

Source

pub fn lock(&self) -> MutexGuard<'_, T>

Source

pub fn into_inner(self) -> T

Trait Implementations

Source§

impl<T: Debug> Debug for Mutex<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more