Fix formatting.

This commit is contained in:
Robin KAY 2023-10-21 01:17:19 +01:00
parent 46cc8567c8
commit d968670960
1 changed files with 10 additions and 9 deletions

View File

@ -78,8 +78,8 @@ pub(crate) fn queue_outline_stencil_mesh(
.with_depth_mode(stencil_flags.depth_mode) .with_depth_mode(stencil_flags.depth_mode)
.with_offset_zero(stencil_uniform.offset == 0.0) .with_offset_zero(stencil_uniform.offset == 0.0)
.with_morph_targets(mesh.morph_targets.is_some()); .with_morph_targets(mesh.morph_targets.is_some());
let Ok(pipeline) = pipelines let Ok(pipeline) =
.specialize(&pipeline_cache, &stencil_pipeline, key, &mesh.layout) pipelines.specialize(&pipeline_cache, &stencil_pipeline, key, &mesh.layout)
else { else {
continue; // No pipeline continue; // No pipeline
}; };
@ -168,8 +168,9 @@ pub(crate) fn queue_outline_volume_mesh(
.with_offset_zero(volume_uniform.offset == 0.0) .with_offset_zero(volume_uniform.offset == 0.0)
.with_hdr_format(view.hdr) .with_hdr_format(view.hdr)
.with_morph_targets(mesh.morph_targets.is_some()); .with_morph_targets(mesh.morph_targets.is_some());
let Ok(pipeline) = pipelines let Ok(pipeline) =
.specialize(&pipeline_cache, &outline_pipeline, key, &mesh.layout) else { pipelines.specialize(&pipeline_cache, &outline_pipeline, key, &mesh.layout)
else {
continue; // No pipeline continue; // No pipeline
}; };
let distance = rangefinder.distance(&Mat4::from_translation(volume_uniform.origin)); let distance = rangefinder.distance(&Mat4::from_translation(volume_uniform.origin));