From fb2544021a40d029a99cadda7cf59acf5e7dc455 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 9 Mar 2025 01:38:34 +0100 Subject: Update `wgpu` to `24` and use `cryoglyph` fork Co-authored-by: Winfried Baumann --- graphics/src/compositor.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'graphics') 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). -- cgit