diff options
author | Cole Helbling <cole.e.helbling@gmail.com> | 2019-11-26 13:02:47 -0800 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2019-11-26 22:02:47 +0100 |
commit | c104215ae35aba090730252622bf690c0e534e5f (patch) | |
tree | 96efd8a1c74a4cb4f51aef0db3b4dc09b0cda16f | |
parent | 4e6bbfbfc3ae3d315c13ffc6d1a0f6769613823c (diff) | |
download | alacritty-c104215ae35aba090730252622bf690c0e534e5f.tar.gz alacritty-c104215ae35aba090730252622bf690c0e534e5f.zip |
Remove unused PackedVertex struct
All references to `PackedVertex` were removed in #2066, so there is no
reason to keep it around.
-rw-r--r-- | alacritty/src/renderer/mod.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/alacritty/src/renderer/mod.rs b/alacritty/src/renderer/mod.rs index 64b14a46..a0617988 100644 --- a/alacritty/src/renderer/mod.rs +++ b/alacritty/src/renderer/mod.rs @@ -450,12 +450,6 @@ pub struct LoaderApi<'a> { current_atlas: &'a mut usize, } -#[derive(Debug)] -pub struct PackedVertex { - x: f32, - y: f32, -} - #[derive(Debug, Default)] pub struct Batch { tex: GLuint, |