maximized/fullscreen as noops for other platforms

This commit is contained in:
Pedro Côrte-Real 2017-08-28 01:43:34 +01:00
parent eff04394c9
commit b35c4a5ee5
6 changed files with 44 additions and 10 deletions

View file

@ -24,7 +24,7 @@ pub struct Window {
event_rx: Receiver<android_glue::Event>,
}
#[derive(Clone)]
#[derive(Clone, PartialEq)]
pub struct MonitorId;
mod ffi;
@ -261,6 +261,10 @@ impl Window {
unimplemented!();
}
#[inline]
pub fn set_maximized(&self, maximized: bool) {
}
#[inline]
pub fn set_fullscreen_windowed(&self, fullscreen: bool) {
}