summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorVasily Khoruzhick <vasily.khoruzhick@gmail.com>2022-06-08 02:02:57 -0700
committerGitHub <noreply@github.com>2022-06-08 12:02:57 +0300
commit6dc670cde0c136e28c71d4ebe67c5c8bb9df65b1 (patch)
tree31ca11c0e1784d6f608286d7f883406231b74068 /Cargo.lock
parent29b1ff59e29cccd69bee349ca6937082dee718f6 (diff)
downloadalacritty-6dc670cde0c136e28c71d4ebe67c5c8bb9df65b1.tar.gz
alacritty-6dc670cde0c136e28c71d4ebe67c5c8bb9df65b1.zip
Support dual source blending in GLES2 renderer
GLES2 has GL_EXT_blend_func_extended extension that enables dual-source blending, so essentially we can reuse fragment shader from GLSL3 renderer and do 1 rendering pass instead of 3 for the text. Co-authored-by: Kirill Chibisov <contact@kchibisov.com> Co-authored-by: Christian Duerr <contact@christianduerr.com>
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock5
1 files changed, 3 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2274c25c..3c80ac8c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -29,6 +29,7 @@ dependencies = [
"log",
"notify",
"objc",
+ "once_cell",
"parking_lot",
"png",
"raw-window-handle",
@@ -1191,9 +1192,9 @@ dependencies = [
[[package]]
name = "once_cell"
-version = "1.9.0"
+version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5"
+checksum = "7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225"
[[package]]
name = "os_str_bytes"