1
0
mirror of synced 2025-11-09 12:57: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

@@ -65,7 +65,7 @@ where
let mut fragment_path = path.clone();
fragment_path.push(fragment);
let shader = shade_runner::load(vertex_path, fragment_path).expect("Failed to compile");
shade_runner::parse(&shader)
shade_runner::parse(&shader).unwrap()
}
fn do_test<T>(a: &T, b: &T)