diff options
author | 2025-03-09 01:57:25 +0100 | |
---|---|---|
committer | 2025-03-09 01:57:25 +0100 | |
commit | bae25b74f68078e5ff74cdae717273cf315d4e90 (patch) | |
tree | 3760dd8a8c1d3bafaadefd3e07c7c70820e8d582 /graphics | |
parent | 86e8494bfa460bdbf506695f8f4b4f01a9cf5088 (diff) | |
parent | fb2544021a40d029a99cadda7cf59acf5e7dc455 (diff) | |
download | iced-bae25b74f68078e5ff74cdae717273cf315d4e90.tar.gz iced-bae25b74f68078e5ff74cdae717273cf315d4e90.tar.bz2 iced-bae25b74f68078e5ff74cdae717273cf315d4e90.zip |
Merge pull request #2832 from codewing/feature/wgpu-24
Update `wgpu` to `24` and use `cryoglyph` fork
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/src/compositor.rs | 3 |
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). |