Merge branch 'master' of https://github.com/supertuxkart/stk-code into save_gp
This commit is contained in:
commit
691d1fb68c
@ -29,7 +29,7 @@ else()
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(UNIX AND NOT APPLE)
|
if(UNIX AND NOT APPLE)
|
||||||
option(USE_XRANDR "Use xrandr instead of vidmode" OFF)
|
option(USE_XRANDR "Use xrandr instead of vidmode" ON)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(STK_SOURCE_DIR "src")
|
set(STK_SOURCE_DIR "src")
|
||||||
|
@ -826,6 +826,17 @@ bool CIrrDeviceLinux::createWindow()
|
|||||||
{
|
{
|
||||||
if (netWM)
|
if (netWM)
|
||||||
{
|
{
|
||||||
|
// Some window managers don't respect values from XCreateWindow and
|
||||||
|
// place window in random position. This may cause that fullscreen
|
||||||
|
// window is showed in wrong screen. It doesn't matter for vidmode
|
||||||
|
// which displays cloned image in all devices.
|
||||||
|
#ifdef _IRR_LINUX_X11_RANDR_
|
||||||
|
XResizeWindow(display, window, Width, Height);
|
||||||
|
XMoveWindow(display, window, crtc_x, crtc_y);
|
||||||
|
XRaiseWindow(display, window);
|
||||||
|
XFlush(display);
|
||||||
|
#endif
|
||||||
|
|
||||||
// Workaround for Gnome which sometimes creates window smaller than display
|
// Workaround for Gnome which sometimes creates window smaller than display
|
||||||
XSizeHints *hints = XAllocSizeHints();
|
XSizeHints *hints = XAllocSizeHints();
|
||||||
hints->flags=PMinSize;
|
hints->flags=PMinSize;
|
||||||
@ -839,7 +850,8 @@ bool CIrrDeviceLinux::createWindow()
|
|||||||
Atom WMStateAtom = XInternAtom(display, "_NET_WM_STATE", true);
|
Atom WMStateAtom = XInternAtom(display, "_NET_WM_STATE", true);
|
||||||
Atom WMFullscreenAtom = XInternAtom(display, "_NET_WM_STATE_FULLSCREEN", true);
|
Atom WMFullscreenAtom = XInternAtom(display, "_NET_WM_STATE_FULLSCREEN", true);
|
||||||
// Set the fullscreen property
|
// Set the fullscreen property
|
||||||
XChangeProperty(display, window, WMStateAtom, XA_ATOM, 32, PropModeReplace, reinterpret_cast<unsigned char *>(& WMFullscreenAtom), 1);
|
XChangeProperty(display, window, WMStateAtom, XA_ATOM, 32, PropModeReplace,
|
||||||
|
reinterpret_cast<unsigned char*>(&WMFullscreenAtom), 1);
|
||||||
|
|
||||||
// Notify the root window
|
// Notify the root window
|
||||||
XEvent xev = {0}; // The event should be filled with zeros before setting its attributes
|
XEvent xev = {0}; // The event should be filled with zeros before setting its attributes
|
||||||
@ -850,7 +862,10 @@ bool CIrrDeviceLinux::createWindow()
|
|||||||
xev.xclient.format = 32;
|
xev.xclient.format = 32;
|
||||||
xev.xclient.data.l[0] = 1;
|
xev.xclient.data.l[0] = 1;
|
||||||
xev.xclient.data.l[1] = WMFullscreenAtom;
|
xev.xclient.data.l[1] = WMFullscreenAtom;
|
||||||
XSendEvent(display, DefaultRootWindow(display), false, SubstructureRedirectMask | SubstructureNotifyMask, &xev);
|
XSendEvent(display, RootWindow(display, visual->screen), false,
|
||||||
|
SubstructureRedirectMask | SubstructureNotifyMask, &xev);
|
||||||
|
|
||||||
|
XFlush(display);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -1557,10 +1572,11 @@ video::IVideoModeList* CIrrDeviceLinux::getVideoModeList()
|
|||||||
XRRScreenResources* res = XRRGetScreenResources(display, DefaultRootWindow(display));
|
XRRScreenResources* res = XRRGetScreenResources(display, DefaultRootWindow(display));
|
||||||
|
|
||||||
if (!res)
|
if (!res)
|
||||||
return NULL;
|
return &VideoModeList;
|
||||||
|
|
||||||
XRROutputInfo *output = NULL;
|
XRROutputInfo *output = NULL;
|
||||||
XRRCrtcInfo* crtc = NULL;
|
XRRCrtcInfo* crtc = NULL;
|
||||||
|
crtc_x = crtc_y = -1;
|
||||||
|
|
||||||
for (int i = 0; i < res->noutput; i++)
|
for (int i = 0; i < res->noutput; i++)
|
||||||
{
|
{
|
||||||
@ -1574,23 +1590,39 @@ video::IVideoModeList* CIrrDeviceLinux::getVideoModeList()
|
|||||||
|
|
||||||
crtc = XRRGetCrtcInfo(display, res, output->crtc);
|
crtc = XRRGetCrtcInfo(display, res, output->crtc);
|
||||||
|
|
||||||
if (!crtc || crtc->x != 0 || crtc->y != 0)
|
if (!crtc)
|
||||||
{
|
{
|
||||||
XRRFreeCrtcInfo(crtc);
|
XRRFreeCrtcInfo(crtc);
|
||||||
XRRFreeOutputInfo(output);
|
XRRFreeOutputInfo(output);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (crtc_x == -1 || crtc->x < crtc_x)
|
||||||
|
{
|
||||||
|
crtc_x = crtc->x;
|
||||||
|
crtc_y = crtc->y;
|
||||||
output_id = res->outputs[i];
|
output_id = res->outputs[i];
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
else if (crtc_x == crtc->x && crtc->y < crtc_y)
|
||||||
|
{
|
||||||
|
crtc_x = crtc->x;
|
||||||
|
crtc_y = crtc->y;
|
||||||
|
output_id = res->outputs[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
XRRFreeCrtcInfo(crtc);
|
||||||
|
XRRFreeOutputInfo(output);
|
||||||
|
}
|
||||||
|
|
||||||
|
output = XRRGetOutputInfo(display, res, output_id);
|
||||||
|
crtc = XRRGetCrtcInfo(display, res, output->crtc);
|
||||||
|
|
||||||
if (crtc == NULL)
|
if (crtc == NULL)
|
||||||
{
|
{
|
||||||
XRRFreeCrtcInfo(crtc);
|
XRRFreeCrtcInfo(crtc);
|
||||||
XRRFreeOutputInfo(output);
|
XRRFreeOutputInfo(output);
|
||||||
XRRFreeScreenResources(res);
|
XRRFreeScreenResources(res);
|
||||||
return NULL;
|
return &VideoModeList;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < res->nmode; i++)
|
for (int i = 0; i < res->nmode; i++)
|
||||||
|
@ -396,6 +396,8 @@ namespace irr
|
|||||||
#ifdef _IRR_LINUX_X11_RANDR_
|
#ifdef _IRR_LINUX_X11_RANDR_
|
||||||
RROutput output_id;
|
RROutput output_id;
|
||||||
RRMode old_mode;
|
RRMode old_mode;
|
||||||
|
int crtc_x;
|
||||||
|
int crtc_y;
|
||||||
#endif
|
#endif
|
||||||
#ifdef _IRR_COMPILE_WITH_OPENGL_
|
#ifdef _IRR_COMPILE_WITH_OPENGL_
|
||||||
GLXWindow glxWin;
|
GLXWindow glxWin;
|
||||||
|
Loading…
Reference in New Issue
Block a user