Skip to content

Commit f1e18e4

Browse files
committed
cargo fmt
1 parent 571b4b1 commit f1e18e4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/processing_render/src/render/material.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
use std::ops::Deref;
21
use bevy::{prelude::*, render::alpha::AlphaMode};
2+
use std::ops::Deref;
33

44
/// A component that holds an untyped handle to a material. This allows the main render loop
55
/// to be agnostic of the specific material types being used, and allows for dynamic material

crates/processing_render/src/render/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ use material::MaterialKey;
1515
use primitive::{TessellationMode, empty_mesh};
1616
use transform::TransformStack;
1717

18-
use crate::{Flush, geometry::Geometry, image::Image, render::primitive::rect};
1918
use crate::render::material::UntypedMaterial;
19+
use crate::{Flush, geometry::Geometry, image::Image, render::primitive::rect};
2020

2121
#[derive(Component)]
2222
#[relationship(relationship_target = TransientMeshes)]
@@ -313,7 +313,7 @@ fn add_fill(
313313
return;
314314
};
315315
let material_key = MaterialKey::Color {
316-
transparent: state.fill_is_transparent(),
316+
transparent: state.fill_is_transparent(),
317317
background_image: None,
318318
};
319319

0 commit comments

Comments
 (0)