diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-09-24 03:08:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-24 03:08:26 +0300 |
commit | 62c300c14ce7a96373e0094763e9fd035b6b9b6d (patch) | |
tree | 0bb1b5a358f1c8fc8a6e88dcac78d56ea1bee1cb /alacritty/src/renderer | |
parent | 56d25d1ff87809855adc98ef0915bbb66c327bde (diff) | |
download | r-alacritty-62c300c14ce7a96373e0094763e9fd035b6b9b6d.tar.gz r-alacritty-62c300c14ce7a96373e0094763e9fd035b6b9b6d.tar.bz2 r-alacritty-62c300c14ce7a96373e0094763e9fd035b6b9b6d.zip |
Log new padding and cell size on 'SizeInfo' update
This makes our logging of 'SizeInfo' changes more consistent
with the one we're using when creating a new 'Display'.
Diffstat (limited to 'alacritty/src/renderer')
-rw-r--r-- | alacritty/src/renderer/mod.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/alacritty/src/renderer/mod.rs b/alacritty/src/renderer/mod.rs index 6b27a837..da5f68a0 100644 --- a/alacritty/src/renderer/mod.rs +++ b/alacritty/src/renderer/mod.rs @@ -1219,8 +1219,6 @@ impl TextShaderProgram { let offset_x = -1.; let offset_y = 1.; - info!("Width: {}, Height: {}", width, height); - unsafe { gl::Uniform4f(self.u_projection, offset_x, offset_y, scale_x, scale_y); } |