儲存庫 vbox 的更動 63105
- 時間撮記:
- 2016-8-6 下午04:20:00 (8 年 以前)
- 位置:
- trunk/src/VBox/Additions/WINNT
- 檔案:
-
- 修改 3 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/VBoxDispD3D.cpp
r63026 r63105 645 645 int iRc = 0; 646 646 647 if (pAlloc->SurfDesc.pitch == pLockInfo->Pitch)647 if (pAlloc->SurfDesc.pitch == (UINT)pLockInfo->Pitch) 648 648 { 649 649 Assert(pAlloc->SurfDesc.cbSize); -
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/VBoxDispDbg.h
r62522 r63105 313 313 } while (0) 314 314 315 #define VBOXVDBG_DUMP_RECTS_INIT(_d) DWORD vboxVDbgDumpRects = _d; 315 #define VBOXVDBG_DUMP_RECTS_INIT(_d) DWORD vboxVDbgDumpRects = _d; NOREF(vboxVDbgDumpRects) 316 316 #define VBOXVDBG_DUMP_RECTS_FORCE() vboxVDbgDumpRects = 1; 317 317 #define VBOXVDBG_DUMP_RECTS_FORCED() (!!vboxVDbgDumpRects) -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnD.cpp
r63103 r63105 1250 1250 int rc2 = VbglR3DnDGHSendAckPending(&mDnDCtx, 1251 1251 uDefAction, uAllActions, 1252 strFormats.c_str(), strFormats.length() + 1 /* Include termination */);1252 strFormats.c_str(), (uint32_t)strFormats.length() + 1 /* Include termination */); 1253 1253 if (RT_FAILURE(rc2)) 1254 1254 { … … 1327 1327 /** @todo Respect uDefAction. */ 1328 1328 void *pvData = pDropTarget->DataMutableRaw(); 1329 uint32_t cbData = pDropTarget->DataSize(); 1329 uint32_t cbData = (uint32_t)pDropTarget->DataSize(); 1330 Assert(cbData == pDropTarget->DataSize()); 1330 1331 1331 1332 if ( pvData
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器