diff options
Diffstat (limited to '')
| -rw-r--r-- | wgpu/src/image/raster.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/wgpu/src/image/raster.rs b/wgpu/src/image/raster.rs index 60e9cbad..4d3c3125 100644 --- a/wgpu/src/image/raster.rs +++ b/wgpu/src/image/raster.rs @@ -38,8 +38,8 @@ impl Memory {  /// Caches image raster data  #[derive(Debug, Default)]  pub struct Cache { -    map: FxHashMap<u64, Memory>, -    hits: FxHashSet<u64>, +    map: FxHashMap<image::Id, Memory>, +    hits: FxHashSet<image::Id>,      should_trim: bool,  } | 
