diff options
Diffstat (limited to 'alacritty/src')
-rw-r--r-- | alacritty/src/window.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/alacritty/src/window.rs b/alacritty/src/window.rs index 4b5de2c9..c783dc69 100644 --- a/alacritty/src/window.rs +++ b/alacritty/src/window.rs @@ -117,6 +117,8 @@ fn create_gl_window( let windowed_context = ContextBuilder::new() .with_srgb(srgb) .with_vsync(true) + .with_depth_buffer(0) + .with_stencil_buffer(0) .with_hardware_acceleration(None) .build_windowed(window, event_loop)?; |