Changeset 104853 in vbox for trunk/src/VBox/Devices/Graphics
- Timestamp:
- Jun 5, 2024 2:18:51 PM (11 months ago)
- svn:sync-xref-src-repo-rev:
- 163446
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA-cmd.cpp
r104806 r104853 33 33 #define LOG_GROUP LOG_GROUP_DEV_VMSVGA 34 34 #include <iprt/mem.h> 35 #include <iprt/path.h> 35 36 #include <VBox/AssertGuest.h> 36 37 #include <VBox/log.h> … … 1660 1661 { 1661 1662 static int idxBitmap = 0; 1662 char *pszFilename = RTStrAPrintf2("bmp \\%s%d.bmp", pszPrefix, idxBitmap++);1663 char *pszFilename = RTStrAPrintf2("bmp" RTPATH_SLASH_STR "%s%d.bmp", pszPrefix, idxBitmap++); 1663 1664 int rc = vmsvga3dBmpWrite(pszFilename, pMap); 1664 1665 Log(("WriteBmpFile %s format %d %Rrc\n", pszFilename, pMap->format, rc)); RT_NOREF(rc); … … 7755 7756 7756 7757 STAM_REL_COUNTER_INC(&pSvgaR3State->StatR3CmdDefineGmrFb); 7757 Log(("SVGA_CMD_DEFINE_GMRFB gmr= %x offset=%x bytesPerLine=%xbpp=%d color depth=%d\n",7758 pCmd->ptr.gmrId, pCmd->ptr.offset, pCmd->bytesPerLine, pCmd-> format.bitsPerPixel, pCmd->format.colorDepth));7758 Log(("SVGA_CMD_DEFINE_GMRFB gmr=0x%x offset=0x%x bytesPerLine=0x%x(%d) bpp=%d color depth=%d\n", 7759 pCmd->ptr.gmrId, pCmd->ptr.offset, pCmd->bytesPerLine, pCmd->bytesPerLine, pCmd->format.bitsPerPixel, pCmd->format.colorDepth)); 7759 7760 7760 7761 pSvgaR3State->GMRFB.ptr = pCmd->ptr; … … 7778 7779 VMSVGASCREENOBJECT *pScreen = vmsvgaR3GetScreenObject(pThisCC, pCmd->destScreenId); 7779 7780 AssertPtrReturnVoid(pScreen); 7781 7782 Log(("SVGA_CMD_BLIT_GMRFB_TO_SCREEN screen(%d): x=%d y=%d w=%d h=%d offVRAM=0x%x cbPitch=0x%x(%d)\n", 7783 pScreen->idScreen, 7784 pScreen->xOrigin, pScreen->yOrigin, pScreen->cWidth, pScreen->cHeight, 7785 pScreen->offVRAM, pScreen->cbPitch, pScreen->cbPitch)); 7780 7786 7781 7787 /** @todo Support GMRFB.format.s.bitsPerPixel != pThis->svga.uBpp ? */
Note:
See TracChangeset
for help on using the changeset viewer.