Changeset 50944 in vbox for trunk/src/VBox
- Timestamp:
- Apr 1, 2014 1:53:32 PM (11 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPVbva.cpp
r50940 r50944 914 914 915 915 pCmd->u8State = VBOXCMDVBVA_STATE_SUBMITTED; 916 #ifdef DEBUG_misha 917 Assert(pCmd->u32FenceID == pVbva->u32FenceSubmitted + 1); 918 #endif 916 919 pVbva->u32FenceSubmitted = pCmd->u32FenceID; 917 920 … … 1063 1066 { 1064 1067 if (u32FenceID) 1068 { 1069 #ifdef DEBUG_misha 1070 Assert(u32FenceID == pVbva->u32FenceCompleted + 1); 1071 #endif 1065 1072 pVbva->u32FenceCompleted = u32FenceID; 1073 } 1066 1074 enmDdiNotify = DXGK_INTERRUPT_DMA_COMPLETED; 1067 1075 } -
trunk/src/VBox/GuestHost/OpenGL/include/cr_vreg.h
r50754 r50944 88 88 pRect1->xRight = RT_MIN(pRect1->xRight, pRect2->xRight); 89 89 pRect1->yBottom = RT_MIN(pRect1->yBottom, pRect2->yBottom); 90 /* ensure the rect is valid */ 91 pRect1->xRight = RT_MAX(pRect1->xRight, pRect1->xLeft); 92 pRect1->yBottom = RT_MAX(pRect1->yBottom, pRect1->yTop); 90 93 } 91 94 -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_presenter.cpp
r50921 r50944 4672 4672 { 4673 4673 /* blit to primary from non-primary */ 4674 if (u8Flags & VBOXCMDVBVA_OPF_ALLOC_ DSTID)4674 if (u8Flags & VBOXCMDVBVA_OPF_ALLOC_SRCID) 4675 4675 { 4676 4676 /* TexPresent */ 4677 4677 uint32_t texId = pBlt->alloc.u.id; 4678 if (!texId) 4679 { 4680 WARN(("texId is NULL!\n")); 4681 return -1; 4682 } 4678 4683 4679 4684 crServerDispatchVBoxTexPresent(texId, u8PrimaryID, pBlt->Pos.x, pBlt->Pos.y, cRects, (const GLint*)pRects);
Note:
See TracChangeset
for help on using the changeset viewer.