Changeset 51328 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm
- Timestamp:
- May 21, 2014 5:26:31 PM (11 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPVidPn.cpp
r51269 r51328 1406 1406 const DXGK_VIDPNTARGETMODESET_INTERFACE *pNewVidPnTargetModeSetInterface; 1407 1407 1408 Assert(pDevExt->fC mdVbvaEnabled || VidPnSourceId == VidPnTargetId);1408 Assert(pDevExt->fComplexTopologiesEnabled || VidPnSourceId == VidPnTargetId); 1409 1409 1410 1410 D3DKMDT_HVIDPNSOURCEMODESET hCurVidPnSourceModeSet; … … 1446 1446 { 1447 1447 Assert(hNewVidPnTargetModeSet); 1448 Assert(pDevExt->fC mdVbvaEnabled || VidPnSourceId == VidPnTargetId);1448 Assert(pDevExt->fComplexTopologiesEnabled || VidPnSourceId == VidPnTargetId); 1449 1449 // if (VidPnSourceId == VidPnTargetId && pCbContext->apPathInfos[VidPnTargetId].enmState == VBOXVIDPNPATHITEM_STATE_PRESENT) 1450 1450 { … … 1537 1537 const DXGK_VIDPNSOURCEMODESET_INTERFACE *pNewVidPnSourceModeSetInterface; 1538 1538 1539 Assert(pDevExt->fC mdVbvaEnabled || VidPnSourceId == VidPnTargetId);1539 Assert(pDevExt->fComplexTopologiesEnabled || VidPnSourceId == VidPnTargetId); 1540 1540 1541 1541 D3DKMDT_HVIDPNTARGETMODESET hCurVidPnTargetModeSet; … … 1577 1577 { 1578 1578 Assert(hNewVidPnSourceModeSet); 1579 Assert(pDevExt->fC mdVbvaEnabled || VidPnSourceId == VidPnTargetId);1579 Assert(pDevExt->fComplexTopologiesEnabled || VidPnSourceId == VidPnTargetId); 1580 1580 // if (VidPnSourceId == VidPnTargetId && pCbContext->apPathInfos[VidPnSourceId].enmState == VBOXVIDPNPATHITEM_STATE_PRESENT) 1581 1581 { … … 1743 1743 static BOOLEAN vboxVidPnIsPathSupported(PVBOXMP_DEVEXT pDevExt, const D3DKMDT_VIDPN_PRESENT_PATH *pNewVidPnPresentPathInfo) 1744 1744 { 1745 if (!pDevExt->fC mdVbvaEnabled && pNewVidPnPresentPathInfo->VidPnSourceId != pNewVidPnPresentPathInfo->VidPnTargetId)1745 if (!pDevExt->fComplexTopologiesEnabled && pNewVidPnPresentPathInfo->VidPnSourceId != pNewVidPnPresentPathInfo->VidPnTargetId) 1746 1746 { 1747 1747 LOG(("unsupported source(%d)->target(%d) pair", pNewVidPnPresentPathInfo->VidPnSourceId, pNewVidPnPresentPathInfo->VidPnTargetId)); -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPWddm.cpp
r51325 r51328 1094 1094 pDevExt->fTexPresentEnabled = !!(VBoxMpCrGetHostCaps() & CR_VBOX_CAP_TEX_PRESENT); 1095 1095 pDevExt->fCmdVbvaEnabled = !!(VBoxMpCrGetHostCaps() & CR_VBOX_CAP_CMDVBVA); 1096 # if 0 1097 pDevExt->fComplexTopologiesEnabled = pDevExt->fCmdVbvaEnabled; 1098 # else 1099 pDevExt->fComplexTopologiesEnabled = FALSE; 1100 # endif 1096 1101 } 1097 1102 else … … 1099 1104 pDevExt->fTexPresentEnabled = FALSE; 1100 1105 pDevExt->fCmdVbvaEnabled = FALSE; 1106 pDevExt->fComplexTopologiesEnabled = FALSE; 1101 1107 } 1102 1108 #endif
Note:
See TracChangeset
for help on using the changeset viewer.