Changeset 94830 in vbox for trunk/src/VBox/Devices/Graphics
- Timestamp:
- May 5, 2022 6:39:05 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151228
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp
r94636 r94830 1544 1544 } 1545 1545 } 1546 Log (("vmsvgaReadPort index=%s (%d) val=%#x rc=%x\n", vmsvgaIndexToString(pThis, idxReg), idxReg, *pu32, rc));1546 LogFlow(("vmsvgaReadPort index=%s (%d) val=%#x rc=%x\n", vmsvgaIndexToString(pThis, idxReg), idxReg, *pu32, rc)); 1547 1547 return rc; 1548 1548 } … … 1799 1799 #ifdef LOG_ENABLED 1800 1800 if (idxReg != SVGA_REG_DEV_CAP) 1801 Log (("vmsvgaWritePort index=%s (%d) val=%#x\n", vmsvgaIndexToString(pThis, idxReg), idxReg, u32));1801 LogFlow(("vmsvgaWritePort index=%s (%d) val=%#x\n", vmsvgaIndexToString(pThis, idxReg), idxReg, u32)); 1802 1802 else 1803 Log (("vmsvgaWritePort index=%s (%d) val=%s (%d)\n", vmsvgaIndexToString(pThis, idxReg), idxReg, vmsvgaDevCapIndexToString((SVGA3dDevCapIndex)u32), u32));1803 LogFlow(("vmsvgaWritePort index=%s (%d) val=%s (%d)\n", vmsvgaIndexToString(pThis, idxReg), idxReg, vmsvgaDevCapIndexToString((SVGA3dDevCapIndex)u32), u32)); 1804 1804 #endif 1805 1805 /* Check if the guest uses legacy registers. See vmsvgaR3ChangeMode */ … … 2383 2383 2384 2384 case SVGA_IRQSTATUS_PORT: 2385 Log (("vmsvgaIOWrite SVGA_IRQSTATUS_PORT %x: status %x -> %x\n", u32, pThis->svga.u32IrqStatus, pThis->svga.u32IrqStatus & ~u32));2385 LogFlow(("vmsvgaIOWrite SVGA_IRQSTATUS_PORT %x: status %x -> %x\n", u32, pThis->svga.u32IrqStatus, pThis->svga.u32IrqStatus & ~u32)); 2386 2386 ASMAtomicAndU32(&pThis->svga.u32IrqStatus, ~u32); 2387 2387 /* Clear the irq in case all events have been cleared. */ … … 3485 3485 uint32_t cbCmd = sizeof(uint32_t); 3486 3486 3487 LogF lowFunc(("[cid=%d] %s %d\n", (int32_t)idDXContext, vmsvgaR3FifoCmdToString(cmdId), cmdId));3487 LogFunc(("[cid=%d] %s %d\n", (int32_t)idDXContext, vmsvgaR3FifoCmdToString(cmdId), cmdId)); 3488 3488 # ifdef LOG_ENABLED 3489 3489 # ifdef VBOX_WITH_VMSVGA3D
Note:
See TracChangeset
for help on using the changeset viewer.