VirtualBox

Changeset 49790 in vbox for trunk/src


Ignore:
Timestamp:
Dec 5, 2013 1:08:04 PM (11 years ago)
Author:
vboxsync
Message:

Main: unsigned width/height

Location:
trunk/src/VBox/Main
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/DisplayImpl.h

    r49783 r49790  
    8585        uint32_t bpp;
    8686        uint32_t cbLine;
    87         int w;
    88         int h;
     87        uint32_t w;
     88        uint32_t h;
    8989        uint16_t flags;
    9090    } pendingResize;
     
    143143
    144144    // 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);
    146146    void handleDisplayUpdateLegacy(int x, int y, int cx, int cy);
    147147    void handleDisplayUpdate(unsigned uScreenId, int x, int y, int w, int h);
     
    268268    uint32_t    mLastBytesPerLine;
    269269    uint32_t    mLastBitsPerPixel;
    270     int         mLastWidth;
    271     int         mLastHeight;
     270    uint32_t    mLastWidth;
     271    uint32_t    mLastHeight;
    272272    uint16_t    mLastFlags;
    273273
  • trunk/src/VBox/Main/src-client/DisplayImpl.cpp

    r49783 r49790  
    634634                                  ULONG pixelFormat, void *pvVRAM,
    635635                                  uint32_t bpp, uint32_t cbLine,
    636                                   int w, int h)
     636                                  uint32_t w, uint32_t h)
    637637{
    638638    Assert (pFramebuffer);
     
    666666 */
    667667int 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)
    669669{
    670670    LogRel(("Display::handleDisplayResize(): uScreenId = %d, pvVRAM=%p "
     
    32393239        AssertComRC (rc);
    32403240
    3241         if (   (width != mLastWidth && mLastWidth != 0)
     3241        if (   (width  != mLastWidth && mLastWidth != 0)
    32423242            || (height != mLastHeight && mLastHeight != 0))
    32433243        {
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette