diff options
author | Joe Wilm <joe@jwilm.com> | 2016-06-04 21:26:28 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-06-04 21:31:41 -0700 |
commit | 1f3f9add49d9b6fae8f57bb907b278eb06b513c9 (patch) | |
tree | d2413d48aa4f911b1e71386db9ef04478f7c859f /Cargo.lock | |
parent | 4fdd5280f1e79ea6575a6a110951c564a7dd235e (diff) | |
download | alacritty-1f3f9add49d9b6fae8f57bb907b278eb06b513c9.tar.gz alacritty-1f3f9add49d9b6fae8f57bb907b278eb06b513c9.zip |
Optimize Rendering with batched draw calls
Draw calls are now batched for performance. Render times on git log at
the default size are now ~200usec.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -2,6 +2,7 @@ name = "alacritty" version = "0.1.0" dependencies = [ + "arrayvec 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", "cgmath 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "euclid 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", "freetype-rs 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -18,6 +19,15 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] +name = "arrayvec" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nodrop 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "odds 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] name = "bitflags" version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -419,6 +429,14 @@ dependencies = [ ] [[package]] +name = "nodrop" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "odds 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] name = "notify" version = "2.5.5" source = "git+https://github.com/jwilm/rsnotify?branch=add-ignore-op#0ca41a4807c427e6cf47d7e75735df62d2e86708" @@ -513,6 +531,11 @@ dependencies = [ ] [[package]] +name = "odds" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] name = "osmesa-sys" version = "0.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" |