diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:20 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:20 +0100 |
commit | a748e4c3e3615601ee2afe6d347ef439d8ff50fa (patch) | |
tree | fdd32177e38c2e7e8ed66fe1d6af5c8d06caae55 /stockton-render/src/error.rs | |
parent | 86a10c5c34157859e33b8d6ae5e51ec4159ed1cc (diff) |
WIP: update gfx-hal
Diffstat (limited to 'stockton-render/src/error.rs')
-rw-r--r-- | stockton-render/src/error.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stockton-render/src/error.rs b/stockton-render/src/error.rs index 7b2b3c0..485d1e7 100644 --- a/stockton-render/src/error.rs +++ b/stockton-render/src/error.rs @@ -27,7 +27,7 @@ pub enum CreationError { WindowError, BadSurface, - DeviceError (hal::error::DeviceCreationError), + DeviceError (hal::device::CreationError), OutOfMemoryError, @@ -42,7 +42,7 @@ pub enum CreationError { BufferNoMemory, SwapchainError (hal::window::CreationError), - ImageViewError (hal::image::ViewError) + ImageViewError (hal::image::ViewCreationError) } /// An error encountered when rendering. |