Changeset 83840 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Video
- Timestamp:
- Apr 20, 2020 9:16:29 AM (5 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPLegacy.cpp
r82968 r83840 1000 1000 { 1001 1001 Assert(pPresent->Flags.Value == 4); /* only Blt is set, we do not support anything else for now */ 1002 Assert(pContext->enmType == VBOXWDDM_CONTEXT_TYPE_CUSTOM_3D);1002 //Assert(pContext->enmType == VBOXWDDM_CONTEXT_TYPE_CUSTOM_3D); 1003 1003 DXGK_ALLOCATIONLIST *pSrc = &pPresent->pAllocationList[DXGK_PRESENT_SOURCE_INDEX]; 1004 1004 PVBOXWDDM_ALLOCATION pSrcAlloc = vboxWddmGetAllocationFromAllocList(pSrc); … … 1030 1030 else if (pPresent->Flags.ColorFill) 1031 1031 { 1032 Assert(pContext->enmType == VBOXWDDM_CONTEXT_TYPE_CUSTOM_2D);1032 //Assert(pContext->enmType == VBOXWDDM_CONTEXT_TYPE_CUSTOM_2D); 1033 1033 Assert(pPresent->Flags.Value == 2); /* only ColorFill is set, we do not support anything else for now */ 1034 1034 DXGK_ALLOCATIONLIST *pDst = &pPresent->pAllocationList[DXGK_PRESENT_DESTINATION_INDEX]; -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPWddm.cpp
r83827 r83840 503 503 { 504 504 VBOXWDDM_TARGET *pTarget = &pDevExt->aTargets[i]; 505 Assert(pTarget->u32Id == i);505 Assert(pTarget->u32Id == (unsigned)i); 506 506 if (pTarget->VidPnSourceId != D3DDDI_ID_UNINITIALIZED) 507 507 { … … 562 562 { 563 563 VBOXWDDM_TARGET *pTarget = &pDevExt->aTargets[i]; 564 Assert(pTarget->u32Id == i);564 Assert(pTarget->u32Id == (unsigned)i); 565 565 if (pTarget->VidPnSourceId != D3DDDI_ID_UNINITIALIZED) 566 566 { … … 3850 3850 { 3851 3851 VBOXWDDM_TARGET *pTarget = &pDevExt->aTargets[i]; 3852 Assert(pTarget->u32Id == i);3852 Assert(pTarget->u32Id == (unsigned)i); 3853 3853 if (pTarget->VidPnSourceId != D3DDDI_ID_UNINITIALIZED) 3854 3854 { -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPWddm.h
r82968 r83840 24 24 #define VBOX_WDDM_DRIVERNAME L"VBoxWddm" 25 25 26 #ifndef DEBUG_misha27 # ifdef Assert28 # error "VBoxMPWddm.h must be included first."29 # endif30 # define RT_NO_STRICT31 #endif32 26 #include "common/VBoxMPUtils.h" 33 27 #include "common/VBoxMPDevExt.h"
Note:
See TracChangeset
for help on using the changeset viewer.