1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::io;

#[derive(Debug, Clone, thiserror::Error)]
pub enum Error {
    #[error("a suitable graphics adapter was not found")]
    NoAdaptersFound,
    #[error("device creation error")]
    RequestDeviceError(#[from] wgpu::RequestDeviceError),
}

impl From<Error> for io::Error {
    fn from(err: Error) -> io::Error {
        io::Error::new(io::ErrorKind::Other, err)
    }
}