VirtualBox

Changeset 50774 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Mar 13, 2014 4:52:21 PM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
92792
Message:

wddm: bugfix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPVbva.cpp

    r50754 r50774  
    10881088    uint32_t cbEl = sizeof (*pEl);
    10891089    uint32_t cStoredPages = 1;
    1090     pEl->iPage = cur;
     1090    PFN_NUMBER next;
     1091    pEl->iPage1 = (uint32_t)(cur & 0xfffff);
     1092    pEl->iPage2 = (uint32_t)(cur >> 20);
    10911093    --cPages;
    1092     for ( ; cPages && cStoredPages < VBOXCMDVBVA_SYSMEMEL_CPAGES_MAX; --cPages, ++cStoredPages)
    1093     {
    1094         PFN_NUMBER next = MmGetMdlPfnArray(pMdl)[iPfn+cStoredPages];
     1094    for ( ; cPages && cStoredPages < VBOXCMDVBVA_SYSMEMEL_CPAGES_MAX; --cPages, ++cStoredPages, cur = next;)
     1095    {
     1096        next = MmGetMdlPfnArray(pMdl)[iPfn+cStoredPages];
    10951097        if (next != cur+1)
    10961098            break;
    1097 
    1098         cur = next;
    1099         ++cStoredPages;
    1100         --cPages;
    11011099    }
    11021100
Note: See TracChangeset for help on using the changeset viewer.

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