Changed is_fullscreen to monitor.is_some()
This commit is contained in:
parent
b149fca83d
commit
bd3b06e1a5
3 changed files with 3 additions and 5 deletions
|
|
@ -1426,6 +1426,7 @@ extern "C" {
|
|||
pub fn glXSwapBuffers(dpy: *mut Display, drawable: GLXDrawable);
|
||||
|
||||
pub fn XkbSetDetectableAutoRepeat(dpy: *mut Display, detectable: bool, supported_rtm: *mut bool) -> bool;
|
||||
|
||||
pub fn XF86VidModeSwitchToMode(dpy: *mut Display, screen: libc::c_int,
|
||||
modeline: *mut XF86VidModeModeInfo) -> Bool;
|
||||
pub fn XF86VidModeSetViewPort(dpy: *mut Display, screen: libc::c_int,
|
||||
|
|
|
|||
|
|
@ -148,7 +148,7 @@ impl Window {
|
|||
};
|
||||
|
||||
let mut window_attributes = ffi::CWBorderPixel | ffi::CWColormap | ffi:: CWEventMask;
|
||||
if builder.is_fullscreen {
|
||||
if builder.monitor.is_some() {
|
||||
window_attributes |= ffi::CWOverrideRedirect;
|
||||
unsafe {
|
||||
ffi::XF86VidModeSwitchToMode(display, screen_id, *modes.offset(best_mode as int));
|
||||
|
|
@ -270,7 +270,7 @@ impl Window {
|
|||
wm_delete_window: wm_delete_window,
|
||||
xf86_desk_mode: xf86_desk_mode,
|
||||
screen_id: screen_id,
|
||||
is_fullscreen: builder.is_fullscreen,
|
||||
is_fullscreen: builder.monitor.is_some(),
|
||||
};
|
||||
|
||||
// calling glViewport
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue