summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-03-09 01:38:34 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-03-09 01:38:34 +0100
commitfb2544021a40d029a99cadda7cf59acf5e7dc455 (patch)
tree3760dd8a8c1d3bafaadefd3e07c7c70820e8d582 /graphics
parent86e8494bfa460bdbf506695f8f4b4f01a9cf5088 (diff)
downloadiced-fb2544021a40d029a99cadda7cf59acf5e7dc455.tar.gz
iced-fb2544021a40d029a99cadda7cf59acf5e7dc455.tar.bz2
iced-fb2544021a40d029a99cadda7cf59acf5e7dc455.zip
Update `wgpu` to `24` and use `cryoglyph` fork
Co-authored-by: Winfried Baumann <codewing@web.de>
Diffstat (limited to 'graphics')
-rw-r--r--graphics/src/compositor.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/graphics/src/compositor.rs b/graphics/src/compositor.rs
index df3d41c3..363d651d 100644
--- a/graphics/src/compositor.rs
+++ b/graphics/src/compositor.rs
@@ -132,6 +132,9 @@ pub enum SurfaceError {
/// There is no more memory left to allocate a new frame.
#[error("There is no more memory left to allocate a new frame")]
OutOfMemory,
+ /// Acquiring a texture failed with a generic error.
+ #[error("Acquiring a texture failed with a generic error")]
+ Other,
}
/// Contains information about the graphics (e.g. graphics adapter, graphics backend).