Changeset 63105 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Aug 6, 2016 4:20:00 PM (8 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.