diff options
Diffstat (limited to 'graphics/src/compositor.rs')
-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). |