Changeset 30626 in vbox
- Timestamp:
- Jul 5, 2010 5:02:02 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63361
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Display/wddm/VBoxDispD3D.cpp
r30623 r30626 3237 3237 D3DPRESENT_PARAMETERS params; 3238 3238 memset(¶ms, 0, sizeof (params)); 3239 // params.BackBufferWidth = 0;3240 // params.BackBufferHeight = 0;3239 params.BackBufferWidth = pResource->pSurfList[0].Width; 3240 params.BackBufferHeight = pResource->pSurfList[0].Height; 3241 3241 params.BackBufferFormat = vboxDDI2D3DFormat(pResource->Format); 3242 3242 Assert(pResource->SurfCount); … … 4551 4551 static HRESULT APIENTRY vboxWddmDDevQueryResourceResidency(HANDLE hDevice, CONST D3DDDIARG_QUERYRESOURCERESIDENCY* pData) 4552 4552 { 4553 vboxVDbgPrintF(("<== "__FUNCTION__", hDevice(0x%p)\n", hDevice)); 4553 vboxVDbgPrintF(("==> "__FUNCTION__", hDevice(0x%p)\n", hDevice)); 4554 PVBOXWDDMDISP_DEVICE pDevice = (PVBOXWDDMDISP_DEVICE)hDevice; 4554 4555 AssertBreakpoint(); 4555 vboxVDbgPrintF(("==> "__FUNCTION__", hDevice(0x%p)\n", hDevice)); 4556 return E_FAIL; 4556 HRESULT hr = S_OK; 4557 vboxVDbgPrintF(("<== "__FUNCTION__", hDevice(0x%p)\n", hDevice)); 4558 return hr; 4557 4559 } 4558 4560 -
trunk/src/VBox/Additions/common/crOpenGL/load.c
r30624 r30626 760 760 761 761 hNewRgn = stubMakeRegionFromRects(pRegions->pRegions, 1); 762 763 #if 0 764 /* may be needed in the future for proper resize handling */ 765 { 766 BOOL bRc = MoveWindow(pRegions->hWnd, winX, winY, winW, winH, FALSE /*BOOL bRepaint*/); 767 if (!bRc) 768 { 769 DWORD winEr = GetLastError(); 770 crWarning("stubSyncTrUpdateWindowCB: MoveWindow failed winEr(%d)", winEr); 771 } 772 } 773 #endif 762 774 } 763 775 else
Note:
See TracChangeset
for help on using the changeset viewer.