- Timestamp:
- Dec 5, 2013 1:08:04 PM (11 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/DisplayImpl.h
r49783 r49790 85 85 uint32_t bpp; 86 86 uint32_t cbLine; 87 int w;88 int h;87 uint32_t w; 88 uint32_t h; 89 89 uint16_t flags; 90 90 } pendingResize; … … 143 143 144 144 // public methods only for internal purposes 145 int handleDisplayResize(unsigned uScreenId, uint32_t bpp, void *pvVRAM, uint32_t cbLine, int w, int h, uint16_t flags);145 int handleDisplayResize(unsigned uScreenId, uint32_t bpp, void *pvVRAM, uint32_t cbLine, uint32_t w, uint32_t h, uint16_t flags); 146 146 void handleDisplayUpdateLegacy(int x, int y, int cx, int cy); 147 147 void handleDisplayUpdate(unsigned uScreenId, int x, int y, int w, int h); … … 268 268 uint32_t mLastBytesPerLine; 269 269 uint32_t mLastBitsPerPixel; 270 intmLastWidth;271 intmLastHeight;270 uint32_t mLastWidth; 271 uint32_t mLastHeight; 272 272 uint16_t mLastFlags; 273 273 -
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r49783 r49790 634 634 ULONG pixelFormat, void *pvVRAM, 635 635 uint32_t bpp, uint32_t cbLine, 636 int w, int h)636 uint32_t w, uint32_t h) 637 637 { 638 638 Assert (pFramebuffer); … … 666 666 */ 667 667 int Display::handleDisplayResize (unsigned uScreenId, uint32_t bpp, void *pvVRAM, 668 uint32_t cbLine, int w, int h, uint16_t flags)668 uint32_t cbLine, uint32_t w, uint32_t h, uint16_t flags) 669 669 { 670 670 LogRel(("Display::handleDisplayResize(): uScreenId = %d, pvVRAM=%p " … … 3239 3239 AssertComRC (rc); 3240 3240 3241 if ( (width != mLastWidth&& mLastWidth != 0)3241 if ( (width != mLastWidth && mLastWidth != 0) 3242 3242 || (height != mLastHeight && mLastHeight != 0)) 3243 3243 {
Note:
See TracChangeset
for help on using the changeset viewer.