- Timestamp:
- Jul 9, 2012 1:33:54 PM (13 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Video/mp
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/common/VBoxMPUtils.cpp
r38765 r42060 31 31 * windbg seems to have some issues when there is a lot ( >~50) of sw breakpoints defined 32 32 * to simplify things we just insert breaks for the case of intensive debugging WDDM driver*/ 33 #ifndef VBOX_WDDM_WIN8 33 34 bool g_bVBoxVDbgBreakF = false; 34 35 bool g_bVBoxVDbgBreakFv = false; 36 #else 37 bool g_bVBoxVDbgBreakF = true; 38 bool g_bVBoxVDbgBreakFv = true; 39 #endif 35 40 #endif 36 41 -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPWddm.cpp
r42054 r42060 1128 1128 KeInitializeSpinLock(&pSource->AllocationLock); 1129 1129 } 1130 1131 #ifdef VBOX_WDDM_WIN8 1132 DXGK_DISPLAY_INFORMATION DisplayInfo; 1133 Status = pDevExt->u.primary.DxgkInterface.DxgkCbAcquirePostDisplayOwnership(pDevExt->u.primary.DxgkInterface.DeviceHandle, 1134 &DisplayInfo); 1135 if (!NT_SUCCESS(Status)) 1136 { 1137 WARN(("DxgkCbAcquirePostDisplayOwnership failed, Status 0x%x", Status)); 1138 } 1139 #endif 1130 1140 } 1131 1141 else … … 1773 1783 DXGK_DRIVERCAPS *pCaps = (DXGK_DRIVERCAPS*)pQueryAdapterInfo->pOutputData; 1774 1784 1785 memset(pCaps, 0, sizeof (*pCaps)); 1786 1775 1787 pCaps->HighestAcceptableAddress.QuadPart = ~((uintptr_t)0); 1788 #ifndef VBOX_WDDM_WIN8 1776 1789 pCaps->MaxAllocationListSlotId = 16; 1777 1790 pCaps->ApertureSegmentCommitLimit = 0; … … 1807 1820 /* @todo: this correlates with pCaps->SchedulingCaps.MultiEngineAware */ 1808 1821 pCaps->GpuEngineTopology.NbAsymetricProcessingNodes = VBOXWDDM_NUM_NODES; 1809 1822 #else 1823 pCaps->WDDMVersion = DXGKDDI_WDDMv1_2; 1824 #endif 1810 1825 break; 1811 1826 } 1827 #ifndef VBOX_WDDM_WIN8 1812 1828 case DXGKQAITYPE_QUERYSEGMENT: 1813 1829 { … … 1886 1902 } 1887 1903 break; 1904 #endif /* #ifndef VBOX_WDDM_WIN8 */ 1888 1905 default: 1889 LOGREL(("unsupported Type (%d)", pQueryAdapterInfo->Type)); 1890 AssertBreakpoint(); 1906 WARN(("unsupported Type (%d)", pQueryAdapterInfo->Type)); 1891 1907 Status = STATUS_NOT_SUPPORTED; 1892 1908 break; -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxVideoW8.inf
r42054 r42060 145 145 ORACLE = "Oracle Corporation" 146 146 VBoxVideo.Disk = "VirtualBox Video Driver Disk" 147 VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter (Microsoft Corporation - WDDM)"147 VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter WDDM 1.2"
Note:
See TracChangeset
for help on using the changeset viewer.