mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-10 04:31:30 +11:00
rustfmt
This commit is contained in:
parent
b6c4963d4c
commit
a50d76cb1c
|
@ -16,7 +16,7 @@
|
|||
|
||||
//! A simple application to run a compute shader.
|
||||
|
||||
use std::{io::BufWriter, fs::File};
|
||||
use std::{fs::File, io::BufWriter};
|
||||
|
||||
use engine::Engine;
|
||||
|
||||
|
|
|
@ -35,5 +35,8 @@ pub fn gen_test_scene() -> Scene {
|
|||
pub fn dump_scene_info(scene: &Scene) {
|
||||
let data = scene.data();
|
||||
println!("tags {:?}", data.tag_stream);
|
||||
println!("pathsegs {:?}", bytemuck::cast_slice::<u8, f32>(&data.pathseg_stream));
|
||||
println!(
|
||||
"pathsegs {:?}",
|
||||
bytemuck::cast_slice::<u8, f32>(&data.pathseg_stream)
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue