aboutsummaryrefslogtreecommitdiff
path: root/alacritty/src/config
diff options
context:
space:
mode:
Diffstat (limited to 'alacritty/src/config')
-rw-r--r--alacritty/src/config/debug.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/alacritty/src/config/debug.rs b/alacritty/src/config/debug.rs
index fe0c78f1..a8be77d9 100644
--- a/alacritty/src/config/debug.rs
+++ b/alacritty/src/config/debug.rs
@@ -23,6 +23,9 @@ pub struct Debug {
/// The renderer alacritty should be using.
pub renderer: Option<RendererPreference>,
+ /// Use EGL as display API if the current platform allows it.
+ pub prefer_egl: bool,
+
/// Record ref test.
#[config(skip)]
pub ref_test: bool,
@@ -38,6 +41,7 @@ impl Default for Debug {
highlight_damage: Default::default(),
ref_test: Default::default(),
renderer: Default::default(),
+ prefer_egl: Default::default(),
}
}
}