android: Fixed Window::get_pixel_format

This commit is contained in:
Andrey Lesnikov 2016-06-19 11:24:26 +03:00
parent 0f385e9dea
commit 7a8429e499

View file

@ -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()
}
}