Mercurial > sdl-ios-xcode
comparison test/testvidinfo.c @ 1545:8d9bb0cf2c2a
Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set.
SDL_SetVideoMode() now accepts 0 for width or height and will use the current video mode (or the desktop mode if no mode has been set.)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 15 Mar 2006 17:46:41 +0000 |
parents | 05c551e5bc64 |
children | 8b9d79e7eacf c121d94672cb |
comparison
equal
deleted
inserted
replaced
1544:ab1e4c41ab71 | 1545:8d9bb0cf2c2a |
---|---|
398 if ( SDL_VideoDriverName(driver, sizeof(driver)) ) { | 398 if ( SDL_VideoDriverName(driver, sizeof(driver)) ) { |
399 printf("Video driver: %s\n", driver); | 399 printf("Video driver: %s\n", driver); |
400 } | 400 } |
401 info = SDL_GetVideoInfo(); | 401 info = SDL_GetVideoInfo(); |
402 printf( | 402 printf( |
403 "Current display: %d bits-per-pixel\n",info->vfmt->BitsPerPixel); | 403 "Current display: %dx%d, %d bits-per-pixel\n", |
404 info->current_w, info->current_h, info->vfmt->BitsPerPixel); | |
404 if ( info->vfmt->palette == NULL ) { | 405 if ( info->vfmt->palette == NULL ) { |
405 printf(" Red Mask = 0x%.8x\n", info->vfmt->Rmask); | 406 printf(" Red Mask = 0x%.8x\n", info->vfmt->Rmask); |
406 printf(" Green Mask = 0x%.8x\n", info->vfmt->Gmask); | 407 printf(" Green Mask = 0x%.8x\n", info->vfmt->Gmask); |
407 printf(" Blue Mask = 0x%.8x\n", info->vfmt->Bmask); | 408 printf(" Blue Mask = 0x%.8x\n", info->vfmt->Bmask); |
408 } | 409 } |