summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Olson <dana@shineuponthee.com>2014-09-16 02:01:35 -0400
committerDana Olson <dana@shineuponthee.com>2014-09-16 02:01:35 -0400
commitf93712d0ae3034afd8c999511fed3d6ed9b90b1b (patch)
tree948c3f1c3a9fdc845e2b7b5958a37a12dc7607fb
parentfb7e27f9ed08a8dab58124cc0a9f532f070d3825 (diff)
removed old method
-rw-r--r--platform/x11/os_x11.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/platform/x11/os_x11.cpp b/platform/x11/os_x11.cpp
index c260001682..e5ca70fbed 100644
--- a/platform/x11/os_x11.cpp
+++ b/platform/x11/os_x11.cpp
@@ -170,20 +170,6 @@ void OS_X11::initialize(const VideoMode& p_desired,int p_video_driver,int p_audi
// borderless fullscreen window mode
if (current_videomode.fullscreen) {
- Hints hints;
- Atom property;
- hints.flags = 2;
- hints.decorations = 0;
- property = XInternAtom(x11_display, "_MOTIF_WM_HINTS", True);
- XChangeProperty(x11_display, x11_window, property, property, 32, PropModeReplace, (unsigned char *)&hints, 5);
- XMapRaised(x11_display, x11_window);
- // get the window root, then the res for the root
- XWindowAttributes xwa;
- XGetWindowAttributes(x11_display,DefaultRootWindow(x11_display),&xwa);
- //XGetWindowAttributes(x11_display,x11_window,&xwa);
- //XGetWindowAttributes(x11_display,xwa.root,&xwa);
- XMoveResizeWindow(x11_display, x11_window ,0 ,0 , xwa.width, xwa.height);
- // NETWM-compliant code:
XEvent xev;
Atom wm_state = XInternAtom(x11_display, "_NET_WM_STATE", False);
Atom fullscreen = XInternAtom(x11_display, "_NET_WM_STATE_FULLSCREEN", False);
@@ -209,7 +195,6 @@ void OS_X11::initialize(const VideoMode& p_desired,int p_video_driver,int p_audi
XGetWindowAttributes(x11_display,x11_window,&xwa);
if (current_videomode.fullscreen) {
XGetWindowAttributes(x11_display,xwa.root,&xwa);
- printf (" Screen: width = %d, height = %d \n", xwa.width,xwa.height);
}
xsh->min_width = xwa.width;
xsh->max_width = xwa.width;