diff options
author | 2024-04-24 22:19:24 +0200 | |
---|---|---|
committer | 2024-04-24 22:19:24 +0200 | |
commit | 5ef593ce53e0ba53d51809f198a02743f87a6ccd (patch) | |
tree | 9a19baac6fa56025a2aa29f3e5d77c7c98cec4b7 /wgpu/src/image/atlas/layer.rs | |
parent | fdcec0319757d2f87c82787eab34c6bef8c5a799 (diff) | |
parent | 493c36ac712ef04523065b94988a88cc4db16b1a (diff) | |
download | iced-5ef593ce53e0ba53d51809f198a02743f87a6ccd.tar.gz iced-5ef593ce53e0ba53d51809f198a02743f87a6ccd.tar.bz2 iced-5ef593ce53e0ba53d51809f198a02743f87a6ccd.zip |
Merge pull request #2403 from iced-rs/improve-image-cache-eviction
Make image `Cache` eviction strategy less aggressive in `iced_wgpu`
Diffstat (limited to 'wgpu/src/image/atlas/layer.rs')
-rw-r--r-- | wgpu/src/image/atlas/layer.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/wgpu/src/image/atlas/layer.rs b/wgpu/src/image/atlas/layer.rs index cf089601..fd6788d9 100644 --- a/wgpu/src/image/atlas/layer.rs +++ b/wgpu/src/image/atlas/layer.rs @@ -11,4 +11,12 @@ impl Layer { pub fn is_empty(&self) -> bool { matches!(self, Layer::Empty) } + + pub fn allocations(&self) -> usize { + match self { + Layer::Empty => 0, + Layer::Busy(allocator) => allocator.allocations(), + Layer::Full => 1, + } + } } |