comparison src/video/epoc/SDL_epocvideo.cpp @ 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 19418e4422cb
children 92947e3a18db
comparison
equal deleted inserted replaced
1544:ab1e4c41ab71 1545:8d9bb0cf2c2a
288 Private->EPOC_FrameBuffer = NULL; /* Private->EPOC_Bitmap->DataAddress() can change any time */ 288 Private->EPOC_FrameBuffer = NULL; /* Private->EPOC_Bitmap->DataAddress() can change any time */
289 Private->EPOC_BytesPerPixel = ((GetBpp(displayMode)-1) / 8) + 1; 289 Private->EPOC_BytesPerPixel = ((GetBpp(displayMode)-1) / 8) + 1;
290 Private->EPOC_BytesPerScanLine = Private->EPOC_WsScreen->SizeInPixels().iWidth * Private->EPOC_BytesPerPixel; 290 Private->EPOC_BytesPerScanLine = Private->EPOC_WsScreen->SizeInPixels().iWidth * Private->EPOC_BytesPerPixel;
291 291
292 #endif /* __WINS__ */ 292 #endif /* __WINS__ */
293
294 _this->info.current_w = Private->EPOC_ScreenSize.iWidth;
295 _this->info.current_h = Private->EPOC_ScreenSize.iHeight;
293 296
294 /* The "best" video format should be returned to caller. */ 297 /* The "best" video format should be returned to caller. */
295 298
296 vformat->BitsPerPixel = /*!!GetBpp(displayMode) */ 8; 299 vformat->BitsPerPixel = /*!!GetBpp(displayMode) */ 8;
297 vformat->BytesPerPixel = /*!!Private->EPOC_BytesPerPixel*/ 1; 300 vformat->BytesPerPixel = /*!!Private->EPOC_BytesPerPixel*/ 1;