- Timestamp:
- Dec 13, 2012 11:50:06 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82677
- 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.h
r42151 r44116 28 28 #include <VBox/log.h> 29 29 #define VBOX_VIDEO_LOG_NAME "VBoxMP" 30 #ifdef VBOX_WDDM_MINIPORT 31 # ifndef VBOX_WDDM_MINIPORT_WITH_FLOW_LOGGING 32 # define VBOX_VIDEO_LOGFLOW_LOGGER(_m) do {} while (0) 33 # endif 34 #endif 30 35 #include "common/VBoxVideoLog.h" 31 36 #include <iprt/err.h> -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPVbva.cpp
r36867 r44116 291 291 if (cbChunk >= cbHwBufferAvail) 292 292 { 293 LOG F(("1) avail %d, chunk %d", cbHwBufferAvail, cbChunk));293 LOG(("1) avail %d, chunk %d", cbHwBufferAvail, cbChunk)); 294 294 295 295 vboxHwBufferFlush (pDevExt, pVbva); -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPVdma.cpp
r43489 r44116 1529 1529 int vboxVdmaDisable (PVBOXMP_DEVEXT pDevExt, PVBOXVDMAINFO pInfo) 1530 1530 { 1531 LOGF(("."));1532 1533 1531 Assert(pInfo->fEnabled); 1534 1532 if (!pInfo->fEnabled) … … 1548 1546 int vboxVdmaEnable (PVBOXMP_DEVEXT pDevExt, PVBOXVDMAINFO pInfo) 1549 1547 { 1550 LOGF(("."));1551 1552 1548 Assert(!pInfo->fEnabled); 1553 1549 if (pInfo->fEnabled) … … 1568 1564 int vboxVdmaFlush (PVBOXMP_DEVEXT pDevExt, PVBOXVDMAINFO pInfo) 1569 1565 { 1570 LOGF(("."));1571 1572 1566 Assert(pInfo->fEnabled); 1573 1567 if (!pInfo->fEnabled)
Note:
See TracChangeset
for help on using the changeset viewer.