diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-02-07 22:08:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-07 22:08:24 +0300 |
commit | 2d27fff796791bf164af8605f97eda16fcb0f724 (patch) | |
tree | 9e10e82e687f0dd08d7be58bd1d2ef47c5215ef6 /alacritty/src/renderer/text/glsl3.rs | |
parent | 8b3f229c3d26b9736a53698e9593b8ae5db6c6dd (diff) | |
download | r-alacritty-2d27fff796791bf164af8605f97eda16fcb0f724.tar.gz r-alacritty-2d27fff796791bf164af8605f97eda16fcb0f724.tar.bz2 r-alacritty-2d27fff796791bf164af8605f97eda16fcb0f724.zip |
Make gles2 renderer actually gles2
Fixes #6209.
Diffstat (limited to 'alacritty/src/renderer/text/glsl3.rs')
-rw-r--r-- | alacritty/src/renderer/text/glsl3.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/renderer/text/glsl3.rs b/alacritty/src/renderer/text/glsl3.rs index 885023a0..7c32bf9f 100644 --- a/alacritty/src/renderer/text/glsl3.rs +++ b/alacritty/src/renderer/text/glsl3.rs @@ -137,7 +137,7 @@ impl Glsl3Renderer { vao, ebo, vbo_instance, - atlas: vec![Atlas::new(ATLAS_SIZE)], + atlas: vec![Atlas::new(ATLAS_SIZE, false)], current_atlas: 0, active_tex: 0, batch: Batch::new(), |