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

@@ -8,6 +8,6 @@ fn main() {
let mut frag_path = project_root.clone();
frag_path.push(PathBuf::from("examples/shaders/frag.glsl"));
let shader = sr::load(vert_path, frag_path).expect("Failed to compile");
let vulkano_entry = sr::parse(&shader);
let vulkano_entry = sr::parse(&shader).expect("failed to parse");
dbg!(vulkano_entry);
}