*** empty log message ***

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40946
This commit is contained in:
Sam Lantinga 2004-08-21 13:49:22 +00:00
parent 639f022cf2
commit 08137364aa

View file

@ -176,10 +176,13 @@ int main(int argc, char *argv[])
if ( argv[argc] && (strcmp(argv[argc], "-noframe") == 0) ) {
videoflags |= SDL_NOFRAME;
} else
if ( argv[argc] && (strcmp(argv[argc], "-resize") == 0) ) {
videoflags |= SDL_RESIZABLE;
} else
if ( argv[argc] && (strcmp(argv[argc], "-fullscreen") == 0) ) {
videoflags |= SDL_FULLSCREEN;
} else {
fprintf(stderr, "Usage: %s [-width] [-height] [-bpp] [-hw] [-hwpalette] [-flip] [-noframe] [-fullscreen]\n",
fprintf(stderr, "Usage: %s [-width] [-height] [-bpp] [-hw] [-hwpalette] [-flip] [-noframe] [-fullscreen] [-resize]\n",
argv[0]);
exit(1);
}
@ -233,6 +236,18 @@ int main(int argc, char *argv[])
case SDL_VIDEOEXPOSE:
DrawBackground(screen);
break;
case SDL_VIDEORESIZE:
screen = CreateScreen(
event.resize.w, event.resize.h,
screen->format->BitsPerPixel,
videoflags);
if ( screen == NULL ) {
fprintf(stderr,
"Couldn't resize video mode\n");
done = 1;
}
DrawBackground(screen);
break;
default:
break;
}