mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 06:11:30 +11:00
Merge pull request #788 from ozkriff/android_fix_get_pixel_format
android: Fix Window::get_pixel_format
This commit is contained in:
commit
fa96db1350
|
@ -231,7 +231,7 @@ impl Window {
|
|||
|
||||
#[inline]
|
||||
pub fn get_pixel_format(&self) -> PixelFormat {
|
||||
unimplemented!();
|
||||
self.context.get_pixel_format()
|
||||
}
|
||||
|
||||
#[inline]
|
||||
|
@ -289,7 +289,7 @@ impl GlContext for Window {
|
|||
|
||||
#[inline]
|
||||
fn get_pixel_format(&self) -> PixelFormat {
|
||||
self.context.get_pixel_format()
|
||||
self.get_pixel_format()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue