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

@ -94,7 +94,7 @@ use self::ffi::{
static mut jmpbuf: [c_int;27] = [0;27];
#[derive(Clone)]
#[derive(Clone, PartialEq)]
pub struct MonitorId;
pub struct Window {
@ -449,6 +449,13 @@ impl Window {
WindowProxy
}
#[inline]
pub fn set_maximized(&self, maximized: bool) {
}
#[inline]
pub fn set_fullscreen_windowed(&self, fullscreen: bool) {
}
}
impl WindowProxy {