VirtualBox

Changeset 27785 in vbox for trunk/src


Ignore:
Timestamp:
Mar 29, 2010 12:21:23 PM (15 years ago)
Author:
vboxsync
Message:

2d: Additional assertion check + some cleaning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxFBOverlay.cpp

    r27777 r27785  
    24502450                {
    24512451                    VBoxVHWASurfaceBase *pCurSurf = (*it);
    2452                     if(pCurSurf != pSurf)
     2452                    Assert(pCurSurf);
     2453                    if (pCurSurf != pSurf)
    24532454                    {
    24542455                        mDisplay.updateVGA(pCurSurf);
     
    27272728    Assert(mDisplay.getVGA() == mDisplay.getPrimary());
    27282729#endif
    2729     if(pSrcSurf->getComplexList()->current() != NULL)
     2730    if (pSrcSurf->getComplexList()->current() != NULL)
    27302731    {
    27312732        Assert(pDstSurf);
    2732         if(pDstSurf != mDisplay.getPrimary())
     2733        if (pDstSurf != mDisplay.getPrimary())
    27332734        {
    27342735            mDisplay.updateVGA(pDstSurf);
     
    27592760    mRepaintNeeded = true;
    27602761
    2761     if(pCmd->u.in.flags & VBOXVHWA_CKEY_DESTBLT)
     2762    if (pCmd->u.in.flags & VBOXVHWA_CKEY_DESTBLT)
    27622763    {
    27632764        VBoxVHWAColorKey ckey(pCmd->u.in.CKey.high, pCmd->u.in.CKey.low);
    27642765        pSurf->setDstBltCKey(&ckey);
    27652766    }
    2766     if(pCmd->u.in.flags & VBOXVHWA_CKEY_DESTOVERLAY)
     2767    if (pCmd->u.in.flags & VBOXVHWA_CKEY_DESTOVERLAY)
    27672768    {
    27682769        VBoxVHWAColorKey ckey(pCmd->u.in.CKey.high, pCmd->u.in.CKey.low);
    27692770        pSurf->setDefaultDstOverlayCKey(&ckey);
    27702771    }
    2771     if(pCmd->u.in.flags & VBOXVHWA_CKEY_SRCBLT)
     2772    if (pCmd->u.in.flags & VBOXVHWA_CKEY_SRCBLT)
    27722773    {
    27732774        VBoxVHWAColorKey ckey(pCmd->u.in.CKey.high, pCmd->u.in.CKey.low);
    27742775        pSurf->setSrcBltCKey(&ckey);
    27752776    }
    2776     if(pCmd->u.in.flags & VBOXVHWA_CKEY_SRCOVERLAY)
     2777    if (pCmd->u.in.flags & VBOXVHWA_CKEY_SRCOVERLAY)
    27772778    {
    27782779        VBoxVHWAColorKey ckey(pCmd->u.in.CKey.high, pCmd->u.in.CKey.low);
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