Skip to main content

TexturePool

Struct TexturePool 

Source
pub struct TexturePool { /* private fields */ }
Expand description

Free-list pool of offscreen textures. One per consumer render loop; lease at frame start, release at frame end.

Implementations§

Source§

impl TexturePool

Source

pub fn new() -> Self

Source

pub fn lease(&mut self, device: &Device, key: TextureKey) -> TextureLease

Lease a texture matching key — reuses a free pooled texture when one exists, otherwise allocates.

Source

pub fn release(&mut self, lease: TextureLease)

Return a leased texture to the free list for reuse.

Source

pub fn free_count(&self) -> usize

Total free (releasable) textures across all keys.

Source

pub fn clear(&mut self)

Drop every pooled texture (e.g. after a resize storm left stale-size entries behind).

Source

pub fn retain(&mut self, keep: impl FnMut(&TextureKey) -> bool)

Keep only free-list buckets whose key satisfies keep; everything else is dropped (wgpu frees the textures).

The targeted eviction seam for the live-resize hazard the module doc names: a consumer that renders at one resolution per frame calls retain(|k| k.width == w && k.height == h) when its surface size changes, so a macOS live-resize drag (a distinct size nearly every frame) cannot strand full-window texture sets for every intermediate size (M3 review 2026-06-12 — mado leaked ~24 MB x 9 textures per visited size with the 6-effect chain enabled). Covers DPI and format churn too: the predicate sees the whole key.

Trait Implementations§

Source§

impl Debug for TexturePool

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for TexturePool

Source§

fn default() -> TexturePool

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

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> Downcast<T> for T

Source§

fn downcast(&self) -> &T

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where 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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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.
Source§

impl<T> Upcast<T> for T

Source§

fn upcast(&self) -> Option<&T>

Source§

impl<T> WasmNotSend for T
where T: Send,

Source§

impl<T> WasmNotSendSync for T

Source§

impl<T> WasmNotSync for T
where T: Sync,