Changeset 99998 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- May 29, 2023 12:30:01 PM (23 months ago)
- svn:sync-xref-src-repo-rev:
- 157663
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/gallium/VBoxMPDX.cpp
r99990 r99998 342 342 pAllocation->enmType = VBOXWDDM_ALLOC_TYPE_D3D; 343 343 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; 345 345 pAllocation->dx.sid = SVGA3D_INVALID_ID; 346 346 pAllocation->dx.mobid = SVGA3D_INVALID_ID; … … 653 653 AssertReturn(pAllocation, STATUS_INVALID_PARAMETER); 654 654 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); 656 659 AssertReturn( pBuildPagingBuffer->Transfer.TransferOffset <= cbAllocation 657 660 && pBuildPagingBuffer->Transfer.TransferSize <= cbAllocation - pBuildPagingBuffer->Transfer.TransferOffset,
Note:
See TracChangeset
for help on using the changeset viewer.