From 927b864844fa70a33a9abf557f9f813f831c54e1 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Sun, 14 Jan 2024 16:01:30 +0100 Subject: Fix `debug.renderer="gles2pure"` documentation Patch 5685ce8bf changed the allowed values of the `debug.renderer` enum, prohibiting the usage of `_` in the `Gles2Pure` variant. This patch updates the documentation to correct for that. Co-authored-by: Kirill Chibisov --- alacritty/src/config/debug.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'alacritty/src') diff --git a/alacritty/src/config/debug.rs b/alacritty/src/config/debug.rs index 15c06454..ffd396d5 100644 --- a/alacritty/src/config/debug.rs +++ b/alacritty/src/config/debug.rs @@ -48,14 +48,11 @@ impl Default for Debug { #[derive(ConfigDeserialize, Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord)] pub enum RendererPreference { /// OpenGL 3.3 renderer. - #[config(rename = "glsl3")] Glsl3, /// GLES 2 renderer, with optional extensions like dual source blending. - #[config(rename = "gles2")] Gles2, /// Pure GLES 2 renderer. - #[config(rename = "gles2_pure")] Gles2Pure, } -- cgit