diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2022-06-09 19:31:08 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-09 16:31:08 +0000 |
commit | 90552e3e7f8f085919a39435a8a68b3a2f633e54 (patch) | |
tree | 711534a54f813a8aad9fe2c3015478ba5ad03d31 /alacritty/src/renderer/text/gles2.rs | |
parent | 6dc670cde0c136e28c71d4ebe67c5c8bb9df65b1 (diff) | |
download | r-alacritty-90552e3e7f8f085919a39435a8a68b3a2f633e54.tar.gz r-alacritty-90552e3e7f8f085919a39435a8a68b3a2f633e54.tar.bz2 r-alacritty-90552e3e7f8f085919a39435a8a68b3a2f633e54.zip |
Fix flickering during resize on Wayland
This also fixes an issue of windows not being rendered while resizing.
Fixes #6069.
Diffstat (limited to 'alacritty/src/renderer/text/gles2.rs')
-rw-r--r-- | alacritty/src/renderer/text/gles2.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/renderer/text/gles2.rs b/alacritty/src/renderer/text/gles2.rs index 32aaa173..01470813 100644 --- a/alacritty/src/renderer/text/gles2.rs +++ b/alacritty/src/renderer/text/gles2.rs @@ -463,7 +463,7 @@ pub struct TextShaderProgram { /// /// If GL_EXT_blend_func_extended is not available, the rendering is split into 4 passes. /// One is used for the background and the rest to perform subpixel text rendering according to - /// https://github.com/servo/webrender/blob/master/webrender/doc/text-rendering.md. + /// <https://github.com/servo/webrender/blob/master/webrender/doc/text-rendering.md>. /// /// Rendering is split into three passes. u_rendering_pass: GLint, |