diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2022-11-03 19:37:54 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-03 19:37:54 +0300 |
commit | 0e418bc2f761617455cc58aaabc375055dfe4284 (patch) | |
tree | fc15d2260404914e21297d392f7f9c32a5f2bffc /.builds | |
parent | 578e08486dfcdee0b2cd0e7a66752ff50edc46b8 (diff) | |
download | alacritty-0e418bc2f761617455cc58aaabc375055dfe4284.tar.gz alacritty-0e418bc2f761617455cc58aaabc375055dfe4284.zip |
Update glutin to 0.30.0
The glutin 0.30.0 update decouples glutin from winit which
provides us with basis for a multithreaded renderer. This
also improves robustness of our configuration picking,
context creation, and surface handling.
As an example we're now able to start on systems without a vsync,
we don't try to build lots of contexts to check if some config works,
and so on.
That also brings us possibility to handle context losses, but that's
a future work.
Fixes #1268.
Diffstat (limited to '.builds')
-rw-r--r-- | .builds/freebsd.yml | 4 | ||||
-rw-r--r-- | .builds/linux.yml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml index 3cd2a60d..4aa4113b 100644 --- a/.builds/freebsd.yml +++ b/.builds/freebsd.yml @@ -24,8 +24,8 @@ tasks: cargo test - oldstable: | cd alacritty - rustup toolchain install --profile minimal 1.57.0 - rustup default 1.57.0 + rustup toolchain install --profile minimal 1.60.0 + rustup default 1.60.0 cargo test - clippy: | cd alacritty diff --git a/.builds/linux.yml b/.builds/linux.yml index a61afd3a..4e6e0a0b 100644 --- a/.builds/linux.yml +++ b/.builds/linux.yml @@ -27,8 +27,8 @@ tasks: cargo +nightly fmt -- --check - oldstable: | cd alacritty - rustup toolchain install --profile minimal 1.57.0 - rustup default 1.57.0 + rustup toolchain install --profile minimal 1.60.0 + rustup default 1.60.0 cargo test - clippy: | cd alacritty |