1
0
mirror of synced 2025-11-10 05:17:13 +00:00

no expects or unimpl

This commit is contained in:
Tom Gowan
2019-04-29 18:17:47 +10:00
parent 15cddaa35b
commit fff431ba55
9 changed files with 126 additions and 110 deletions

View File

@@ -1,10 +1,20 @@
#[derive(Debug)]
pub enum Error {
Compile(shaderc::Error),
Compile(CompileError),
Layout(ConvertError),
LoadingData(String),
FileWatch(notify::Error),
}
#[derive(Debug)]
pub enum ConvertError {
Unimplemented,
}
#[derive(Debug)]
pub enum CompileError {
Compile(shaderc::Error),
Open(std::io::Error),
InvalidPath,
CreateCompiler,
}