diff options
Diffstat (limited to 'graphics/src/layer')
-rw-r--r-- | graphics/src/layer/image.rs | 2 | ||||
-rw-r--r-- | graphics/src/layer/mesh.rs | 2 | ||||
-rw-r--r-- | graphics/src/layer/quad.rs | 2 | ||||
-rw-r--r-- | graphics/src/layer/text.rs | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/graphics/src/layer/image.rs b/graphics/src/layer/image.rs index 387b60ed..cbba7888 100644 --- a/graphics/src/layer/image.rs +++ b/graphics/src/layer/image.rs @@ -20,4 +20,4 @@ pub enum Image { /// The bounds of the image. bounds: Rectangle, }, -}
\ No newline at end of file +} diff --git a/graphics/src/layer/mesh.rs b/graphics/src/layer/mesh.rs index a025675a..8a6b1d70 100644 --- a/graphics/src/layer/mesh.rs +++ b/graphics/src/layer/mesh.rs @@ -36,4 +36,4 @@ impl <'a> Into<Style> for Gradient { } } } -}
\ No newline at end of file +} diff --git a/graphics/src/layer/quad.rs b/graphics/src/layer/quad.rs index 4380fb6c..4def8427 100644 --- a/graphics/src/layer/quad.rs +++ b/graphics/src/layer/quad.rs @@ -27,4 +27,4 @@ pub struct Quad { unsafe impl bytemuck::Zeroable for Quad {} #[allow(unsafe_code)] -unsafe impl bytemuck::Pod for Quad {}
\ No newline at end of file +unsafe impl bytemuck::Pod for Quad {} diff --git a/graphics/src/layer/text.rs b/graphics/src/layer/text.rs index b6dd4b7f..74f7a676 100644 --- a/graphics/src/layer/text.rs +++ b/graphics/src/layer/text.rs @@ -23,4 +23,4 @@ pub struct Text<'a> { /// The vertical alignment of the [`Text`]. pub vertical_alignment: alignment::Vertical, -}
\ No newline at end of file +} |