diff options
author | 2020-01-16 14:03:46 +0100 | |
---|---|---|
committer | 2020-02-25 13:26:50 +0100 | |
commit | 3f388351054c0961923b5f78e7dcf42289565a48 (patch) | |
tree | daa82af28acc644da48ffd5209599521816bfe09 /wgpu/src/image/raster.rs | |
parent | 2f77a6bf5ac1b657c1f54ea0b589b1e115b95e6b (diff) | |
download | iced-3f388351054c0961923b5f78e7dcf42289565a48.tar.gz iced-3f388351054c0961923b5f78e7dcf42289565a48.tar.bz2 iced-3f388351054c0961923b5f78e7dcf42289565a48.zip |
Implement allocating large images across multiple texture array layers.
Diffstat (limited to 'wgpu/src/image/raster.rs')
-rw-r--r-- | wgpu/src/image/raster.rs | 35 |
1 files changed, 11 insertions, 24 deletions
diff --git a/wgpu/src/image/raster.rs b/wgpu/src/image/raster.rs index 32afb749..387bd23a 100644 --- a/wgpu/src/image/raster.rs +++ b/wgpu/src/image/raster.rs @@ -1,19 +1,15 @@ -use crate::image::AtlasArray; +use crate::image::{TextureArray, ImageAllocation}; use iced_native::image; use std::{ collections::{HashMap, HashSet}, }; -use guillotiere::{Allocation, Size}; +use guillotiere::Size; use debug_stub_derive::*; #[derive(DebugStub)] pub enum Memory { Host(::image::ImageBuffer<::image::Bgra<u8>, Vec<u8>>), - Device { - layer: u32, - #[debug_stub="ReplacementValue"] - allocation: Allocation, - }, + Device(ImageAllocation), NotFound, Invalid, } @@ -22,10 +18,7 @@ impl Memory { pub fn dimensions(&self) -> (u32, u32) { match self { Memory::Host(image) => image.dimensions(), - Memory::Device { allocation, .. } => { - let size = &allocation.rectangle.size(); - (size.width as u32, size.height as u32) - }, + Memory::Device(allocation) => allocation.size(), Memory::NotFound => (1, 1), Memory::Invalid => (1, 1), } @@ -77,7 +70,7 @@ impl Cache { handle: &image::Handle, device: &wgpu::Device, encoder: &mut wgpu::CommandEncoder, - atlas_array: &mut AtlasArray, + atlas_array: &mut TextureArray, ) -> &Memory { let _ = self.load(handle); @@ -87,29 +80,23 @@ impl Cache { let (width, height) = image.dimensions(); let size = Size::new(width as i32, height as i32); - let (layer, allocation) = atlas_array.allocate(size).unwrap_or_else(|| { - atlas_array.grow(1, device, encoder); - atlas_array.allocate(size).unwrap() - }); + let allocation = atlas_array.allocate(size); - let flat_samples = image.as_flat_samples(); - let slice = flat_samples.as_slice(); + atlas_array.upload(image, &allocation, device, encoder); - atlas_array.upload(slice, layer, &allocation, device, encoder); - - *memory = Memory::Device { layer, allocation }; + *memory = Memory::Device(allocation); } memory } - pub fn trim(&mut self, atlas_array: &mut AtlasArray) { + pub fn trim(&mut self, texture_array: &mut TextureArray) { let hits = &self.hits; for (id, mem) in &self.map { - if let Memory::Device { layer, allocation } = mem { + if let Memory::Device(allocation) = mem { if !hits.contains(&id) { - atlas_array.deallocate(*layer, allocation); + texture_array.deallocate(allocation); } } } |