diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-05-04 02:29:11 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-03 23:29:11 +0000 |
commit | 04f0bcaf54ed373128ca0f84ee8fcdd8e52bce23 (patch) | |
tree | 44f65d044e8c76d44e2cb1fb424a009cc4acc646 /CHANGELOG.md | |
parent | a425fe6bfe734bb80dce334d6f1c53e0bd41c0db (diff) | |
download | alacritty-04f0bcaf54ed373128ca0f84ee8fcdd8e52bce23.tar.gz alacritty-04f0bcaf54ed373128ca0f84ee8fcdd8e52bce23.zip |
Use frame callbacks instead of vsync on Wayland
Instead of blocking on vsync, Alacritty now requests a notification from
wayland about when the next frame should be rendered. this helps with
input latency, since it gives alacritty more time to process events
before a redraw. it also prevents alacritty from drawing unless the
compositor tells it to do so.
Fixes #2851.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index c99e07be..eda674f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fallback to `LC_CTYPE=UTF-8` on macOS without valid system locale - Resize lag on launch under some X11 wms - Increased input latency due to vsync behavior on X11 +- Freeze when application is invisible on Wayland ## 0.4.2 |