Changeset 80425 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Aug 26, 2019 2:44:01 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132903
- Location:
- trunk/src/VBox/Additions/WINNT
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/shared/VBoxDispKmt.cpp
r80422 r80425 371 371 HRESULT vboxDispKmtCreateContext(PVBOXDISPKMT_DEVICE pDevice, PVBOXDISPKMT_CONTEXT pContext, 372 372 VBOXWDDM_CONTEXT_TYPE enmType, 373 uint32_t crVersionMajor, uint32_t crVersionMinor,374 373 HANDLE hEvent, uint64_t u64UmInfo) 375 374 { … … 377 376 Info.u32IfVersion = 9; 378 377 Info.enmType = enmType; 379 Info.u.vbox.crVersionMajor = crVersionMajor;380 Info.u.vbox.crVersionMinor = crVersionMinor;378 Info.u.vbox.crVersionMajor = 0; /* Not used */ 379 Info.u.vbox.crVersionMinor = 0; /* Not used */ 381 380 Info.u.vbox.hUmEvent = (uintptr_t)hEvent; 382 381 Info.u.vbox.u64UmInfo = u64UmInfo; -
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/shared/VBoxDispKmt.h
r76563 r80425 138 138 HRESULT vboxDispKmtCreateContext(PVBOXDISPKMT_DEVICE pDevice, PVBOXDISPKMT_CONTEXT pContext, 139 139 VBOXWDDM_CONTEXT_TYPE enmType, 140 uint32_t crVersionMajor, uint32_t crVersionMinor,141 140 HANDLE hEvent, uint64_t u64UmInfo); 142 141 HRESULT vboxDispKmtDestroyContext(PVBOXDISPKMT_CONTEXT pContext); -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDispIf.cpp
r78937 r80425 571 571 { 572 572 hr = vboxDispKmtCreateContext(&pOp->Device, &pOp->Context, VBOXWDDM_CONTEXT_TYPE_CUSTOM_DISPIF_RESIZE, 573 0, 0,NULL, 0ULL);573 NULL, 0ULL); 574 574 if (SUCCEEDED(hr)) 575 575 return ERROR_SUCCESS; … … 2656 2656 { 2657 2657 hr = vboxDispKmtCreateContext(&pSeamless->modeData.wddm.Device, &pSeamless->modeData.wddm.Context, VBOXWDDM_CONTEXT_TYPE_CUSTOM_DISPIF_SEAMLESS, 2658 0, 0,hEvent, 0ULL);2658 hEvent, 0ULL); 2659 2659 if (SUCCEEDED(hr)) 2660 2660 return ERROR_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.