VirtualBox

Changeset 28256 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Apr 13, 2010 2:32:17 PM (15 years ago)
Author:
vboxsync
Message:

Main/DisplayImpl.cpp: gcc warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/DisplayImpl.cpp

    r28245 r28256  
    22532253            *pu32Width = 0;
    22542254            *pu32Height = 0;
     2255            rc = VINF_SUCCESS;
    22552256        }
    22562257    }
     
    25002501                if (pFBInfo->fDefaultFormat)
    25012502                {
    2502                     BYTE *address = NULL;
     2503                    address = NULL;
    25032504                    HRESULT hrc = pFBInfo->pFramebuffer->COMGETTER(Address) (&address);
    25042505                    if (SUCCEEDED(hrc) && address != NULL)
    25052506                    {
    2506                         const uint8_t *pu8Src       = pFBInfo->pu8FramebufferVRAM;
    2507                         int32_t xSrc                = x;
    2508                         int32_t ySrc                = y;
    2509                         uint32_t u32SrcWidth        = pFBInfo->w;
    2510                         uint32_t u32SrcHeight       = pFBInfo->h;
    2511                         uint32_t u32SrcLineSize     = pFBInfo->u32LineSize;
    2512                         uint32_t u32SrcBitsPerPixel = pFBInfo->u16BitsPerPixel;
     2507                        pu8Src       = pFBInfo->pu8FramebufferVRAM;
     2508                        xSrc                = x;
     2509                        ySrc                = y;
     2510                        u32SrcWidth        = pFBInfo->w;
     2511                        u32SrcHeight       = pFBInfo->h;
     2512                        u32SrcLineSize     = pFBInfo->u32LineSize;
     2513                        u32SrcBitsPerPixel = pFBInfo->u16BitsPerPixel;
    25132514
    25142515                        /* Default format is 32 bpp. */
    2515                         uint8_t *pu8Dst             = address;
    2516                         int32_t xDst                = xSrc;
    2517                         int32_t yDst                = ySrc;
    2518                         uint32_t u32DstWidth        = u32SrcWidth;
    2519                         uint32_t u32DstHeight       = u32SrcHeight;
    2520                         uint32_t u32DstLineSize     = u32DstWidth * 4;
    2521                         uint32_t u32DstBitsPerPixel = 32;
     2516                        pu8Dst             = address;
     2517                        xDst                = xSrc;
     2518                        yDst                = ySrc;
     2519                        u32DstWidth        = u32SrcWidth;
     2520                        u32DstHeight       = u32SrcHeight;
     2521                        u32DstLineSize     = u32DstWidth * 4;
     2522                        u32DstBitsPerPixel = 32;
    25222523
    25232524                        pDisplay->mpDrv->pUpPort->pfnCopyRect(pDisplay->mpDrv->pUpPort,
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