diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-07-13 11:06:54 +0400 |
---|---|---|
committer | Kirill Chibisov <contact@kchibisov.com> | 2023-09-04 03:01:12 +0400 |
commit | a189861880aafcce760e3a142bc2d391f2801f64 (patch) | |
tree | 5a9e82c1577ef60deb328e369cf56122f2088933 /alacritty/src/renderer/mod.rs | |
parent | bbc02004b85c8b2c0c65c7031527fded4efe6c04 (diff) | |
download | r-alacritty-a189861880aafcce760e3a142bc2d391f2801f64.tar.gz r-alacritty-a189861880aafcce760e3a142bc2d391f2801f64.tar.bz2 r-alacritty-a189861880aafcce760e3a142bc2d391f2801f64.zip |
Update winit to 0.29.1-beta
Make use of new winit frame throttling mechanism used in RedrawRequested,
which removes the need for having Wayland queue to ask for the frame
callbacks.
Fixes #7011.
Diffstat (limited to 'alacritty/src/renderer/mod.rs')
-rw-r--r-- | alacritty/src/renderer/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/alacritty/src/renderer/mod.rs b/alacritty/src/renderer/mod.rs index 98e29542..87ccf2f6 100644 --- a/alacritty/src/renderer/mod.rs +++ b/alacritty/src/renderer/mod.rs @@ -254,7 +254,6 @@ impl Renderer { } } - #[cfg(not(any(target_os = "macos", windows)))] pub fn finish(&self) { unsafe { gl::Finish(); |