1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

document justification for FallbackEgl (#5392)

The previous link does not explain why we chose FallbackEgl. This is a
better link.
This commit is contained in:
Valentin
2024-11-26 15:23:43 +01:00
committed by GitHub
parent 6359ba7e66
commit 7cee35c02a

View File

@@ -941,7 +941,9 @@ impl GlutinWindowContext {
// Create GL display. This may probably create a window too on most platforms. Definitely on `MS windows`. Never on Android.
let display_builder = glutin_winit::DisplayBuilder::new()
// we might want to expose this option to users in the future. maybe using an env var or using native_options.
.with_preference(glutin_winit::ApiPreference::FallbackEgl) // https://github.com/emilk/egui/issues/2520#issuecomment-1367841150
//
// The justification for FallbackEgl over PreferEgl is at https://github.com/emilk/egui/pull/2526#issuecomment-1400229576 .
.with_preference(glutin_winit::ApiPreference::PreferEgl)
.with_window_attributes(Some(egui_winit::create_winit_window_attributes(
egui_ctx,
event_loop,