Derek Weitzel      2009-08-11 12:17:09 PDT

Window Manager: xorg-x11-twm-1.0.1-3.1

Running through Xdmx.  The same application could expand to the full screen
using GLUT (freeglut).

Overview:
While running on a very high resolution display, discovered the maximium width
of the window is 4096.

--HG--
branch : SDL-1.2
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%403858
This commit is contained in:
Sam Lantinga 2009-09-21 09:47:53 +00:00
parent 1106b669a6
commit 88928312fa

View file

@ -771,16 +771,11 @@ static void X11_SetSizeHints(_THIS, int w, int h, Uint32 flags)
hints = XAllocSizeHints();
if ( hints ) {
if ( flags & SDL_RESIZABLE ) {
hints->min_width = 32;
hints->min_height = 32;
hints->max_height = 4096;
hints->max_width = 4096;
} else {
if (!(flags & SDL_RESIZABLE)) {
hints->min_width = hints->max_width = w;
hints->min_height = hints->max_height = h;
hints->flags = PMaxSize | PMinSize;
}
hints->flags = PMaxSize | PMinSize;
if ( flags & SDL_FULLSCREEN ) {
hints->x = 0;
hints->y = 0;