Changeset 81082 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Video
- Timestamp:
- Sep 30, 2019 1:42:47 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133687
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/gallium
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/gallium/GaDdi.cpp
r79792 r81082 153 153 pointDst.y = pData->DstRect.top; 154 154 hr = pDevice9If->UpdateSurface(pSrcSurfIf, &pData->SrcRect, pDstSurfIf, &pointDst); 155 Assert(hr == S_OK); 155 156 } 156 157 } … … 174 175 pSrcRc->RcDesc.enmFormat, pSrcSurfIf, &pData->SrcRect, 175 176 pDstRc->RcDesc.enmFormat, pDstSurfIf, &pointDst); 177 Assert(hr == S_OK); 176 178 } 177 179 else … … 201 203 */ 202 204 hr = pDevice9If->StretchRect(pSrcSurfIf, &pData->SrcRect, pDstSurfIf, &pData->DstRect, Filter); 205 Assert(hr == S_OK); 203 206 } 204 207 else -
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/gallium/GaWddm.cpp
r80959 r81082 245 245 PVBOXWDDMDISP_ALLOCATION pAlloc = &pRc->aAllocations[i]; 246 246 Assert(pAlloc->pvMem); 247 Assert(pAlloc->pvMem != Rect.pBits); 247 248 248 249 VBoxD3DIfLockUnlockMemSynch(pAlloc, &Rect, NULL, fToBackend);
Note:
See TracChangeset
for help on using the changeset viewer.