VirtualBox

Changeset 99998 in vbox for trunk/src/VBox/Additions/WINNT


Ignore:
Timestamp:
May 29, 2023 12:30:01 PM (23 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
157663
Message:

WDDM: take into account that DXGK aligns allocation size. bugref:9845

File:
1 edited

Legend:

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

    r99990 r99998  
    342342    pAllocation->enmType = VBOXWDDM_ALLOC_TYPE_D3D;
    343343    pAllocation->dx.desc = *(PVBOXDXALLOCATIONDESC)pAllocationInfo->pPrivateDriverData;
    344     pAllocation->dx.desc.cbAllocation = RT_ALIGN_32(pAllocation->dx.desc.cbAllocation, PAGE_SIZE); /* DXGK expects it to be page aligned. */
     344    pAllocation->dx.desc.cbAllocation = pAllocation->dx.desc.cbAllocation;
    345345    pAllocation->dx.sid = SVGA3D_INVALID_ID;
    346346    pAllocation->dx.mobid = SVGA3D_INVALID_ID;
     
    653653    AssertReturn(pAllocation, STATUS_INVALID_PARAMETER);
    654654
    655     SIZE_T cbAllocation = svgaGetAllocationSize(pAllocation);
     655    /* "The size value is expanded to a multiple of the native host page size (for example, 4 KB on the x86 architecture)."
     656     * I.e. TransferOffset and TransferSize are within the aligned size.
     657     */
     658    SIZE_T const cbAllocation = RT_ALIGN_32(svgaGetAllocationSize(pAllocation), PAGE_SIZE);
    656659    AssertReturn(   pBuildPagingBuffer->Transfer.TransferOffset <= cbAllocation
    657660                 && pBuildPagingBuffer->Transfer.TransferSize <= cbAllocation - pBuildPagingBuffer->Transfer.TransferOffset,
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