Freya Gentz
Freya Gentz
@sumit0190 Older/newer implementations might behave differently, idk. Maybe I'm reading the extension wrong. Maybe none of the drivers bothered caring. Nevertheless, users should set `with_srgb` correctly.
I'm not precisely sure what "manag[ing] it manually (with the frame request/events)" would entail, being unfamiliar with how Wayland handles most stuff, but if it brings the behavior in line...
> `ConfigsFinder` could either be an incredibly handy little tool or a tarpit of trying to express every possible combination of desires, depending. Yes, this is very much a concern...
Targets for 0.21 have been met!
I'd print out `attributes` and see what is populated with. I'd then go commenting out lines from here 1 by one till it works: https://github.com/rust-windowing/glutin/blob/master/glutin/src/platform_impl/macos/helpers.rs#L79 I'd also find out a...
I'm not aware of any method for glutin discovering why it couldn't find a matching pixel format. Even if there was, what would glutin print out if you selected two...
Hmmm, does hardware acceleration work if you force it to use the integrated/discrete gpu via tools like [gfxCardStatus](https://gfx.io/)? As far as I know, that laptop should support hardware acceleration, it...
Take with a grain of salt, but, no where in the glutin code do we set `drawableDepthFormat`. [These docs say](https://developer.apple.com/documentation/glkit/glkview/1615583-drawabledepthformat?language=objc ) that the default value is `GLKViewDrawableDepthFormatNone`. So, as expected,...
We used to subclass `UIViewController` in winit: https://github.com/rust-windowing/winit/pull/609/files#diff-6c46aa4c86605314d2bc4362928e960aL645 [ I think this was appropriate at the time, cause the docs say: ](https://developer.apple.com/documentation/uikit/uiviewcontroller) > The UIViewController class defines the shared behavior...
I think it is safe to draw to the stuff from outside of the `draw` callback (although maybe not necessarily recommended). https://developer.apple.com/documentation/glkit/glkviewdelegate/1615595-glkview > The semantics of this method are identical...