diff options
author | Joe Wilm <joe@jwilm.com> | 2016-02-23 20:42:58 -0800 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-02-23 20:42:58 -0800 |
commit | 2b7caf95fd6a28d621a348e95f66dd2aee988567 (patch) | |
tree | ccfd1e7c0c4c86ecdd36c7e98d164f58b34132d0 /src/text.rs | |
parent | e301843686c3f7ce04b7e44e82f20e8f6e3613a7 (diff) | |
download | r-alacritty-2b7caf95fd6a28d621a348e95f66dd2aee988567.tar.gz r-alacritty-2b7caf95fd6a28d621a348e95f66dd2aee988567.tar.bz2 r-alacritty-2b7caf95fd6a28d621a348e95f66dd2aee988567.zip |
Render the letter J
This letter brought to you by OpenGL and freetype.
Diffstat (limited to 'src/text.rs')
-rw-r--r-- | src/text.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/text.rs b/src/text.rs index 5694e2ce..14a0cfb7 100644 --- a/src/text.rs +++ b/src/text.rs @@ -49,12 +49,12 @@ impl Rasterizer { } #[derive(Debug)] -struct RasterizedGlyph { - width: usize, - height: usize, - top: usize, - left: usize, - buf: Vec<u8>, +pub struct RasterizedGlyph { + pub width: usize, + pub height: usize, + pub top: usize, + pub left: usize, + pub buf: Vec<u8>, } |