diff options
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. |