-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document justification for FallbackEgl #5392
Conversation
The previous link does not explain why we chose FallbackEgl. This is a better link.
Preview available at https://egui-pr-preview.github.io/pr/5392-egl |
.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) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Am I misunderstanding something or should this have stayed FallbackEgl
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes it should have. My bad. I was playing around with this setting to understand it, which is how I ended up updating the documentation comment. I accidentally committed the change when I only wanted to commit the documentation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I accidentally changed this in a previous commit when I meant to only change the comment above it. #5392 (comment)
The previous link does not explain why we chose FallbackEgl. This is a better link.