When querying the display size for a fullscreen window, the display size is the size of the fullscreen video mode.
This commit is contained in:
parent
7685a1892c
commit
4d435bce47
1 changed files with 9 additions and 3 deletions
|
@ -94,9 +94,15 @@ X11_GetDisplaySize(_THIS, SDL_Window * window, int *w, int *h)
|
|||
(SDL_DisplayData *) window->display->driverdata;
|
||||
XWindowAttributes attr;
|
||||
|
||||
XGetWindowAttributes(data->display, RootWindow(data->display,
|
||||
displaydata->screen),
|
||||
&attr);
|
||||
XGetWindowAttributes(data->display, RootWindow(data->display, displaydata->screen), &attr);
|
||||
if (window->flags & SDL_WINDOW_FULLSCREEN) {
|
||||
/* The bounds when this window is visible is the fullscreen mode */
|
||||
SDL_DisplayMode fullscreen_mode;
|
||||
if (SDL_GetWindowDisplayMode(window, &fullscreen_mode) == 0) {
|
||||
attr.width = fullscreen_mode.w;
|
||||
attr.height = fullscreen_mode.h;
|
||||
}
|
||||
}
|
||||
if (w) {
|
||||
*w = attr.width;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue