debugging tutorials 9 and 10

pull/177/head
Ben Hansen 3 years ago
parent add4ba7328
commit 601273ec2b

2
.gitignore vendored

@ -7,6 +7,6 @@ target/
output/ output/
/trace /trace
trace.zip *trace.zip
secrets.txt secrets.txt

@ -261,7 +261,7 @@ impl State {
features: wgpu::Features::empty(), features: wgpu::Features::empty(),
limits: wgpu::Limits::default(), limits: wgpu::Limits::default(),
}, },
None, // Trace path Some(&std::path::Path::new("trace")), // Trace path
) )
.await .await
.unwrap(); .unwrap();

@ -341,7 +341,7 @@ impl State {
features: wgpu::Features::empty(), features: wgpu::Features::empty(),
limits: wgpu::Limits::default(), limits: wgpu::Limits::default(),
}, },
None, // Trace path Some(&std::path::Path::new("trace")), // Trace path
) )
.await .await
.unwrap(); .unwrap();

Loading…
Cancel
Save