Changeset 83305 in vbox
- Timestamp:
- Mar 17, 2020 12:26:16 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 136478
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp ¶
r83278 r83305 1696 1696 for (uint32_t idScreen = 0; idScreen < pThis->cMonitors; ++idScreen) 1697 1697 pThisCC->pDrv->pfnVBVAEnable(pThisCC->pDrv, idScreen, NULL /*pHostFlags*/); 1698 1699 /* Make the cursor visible again as needed. */ 1700 if (pSVGAState->Cursor.fActive) 1701 pThisCC->pDrv->pfnVBVAMousePointerShape(pThisCC->pDrv, true /*fVisible*/, false, 0, 0, 0, 0, NULL); 1698 1702 } 1699 1703 else 1700 1704 { 1705 /* Make sure the cursor is off. */ 1706 if (pSVGAState->Cursor.fActive) 1707 pThisCC->pDrv->pfnVBVAMousePointerShape(pThisCC->pDrv, false /*fVisible*/, false, 0, 0, 0, 0, NULL); 1708 1701 1709 /* Restore the text mode backup. */ 1702 1710 memcpy(pThisCC->pbVRam, pThisCC->svga.pbVgaFrameBufferR3, VMSVGA_VGA_FB_BACKUP_SIZE); … … 2908 2916 2909 2917 /* Convert the XOR mask. */ 2910 uint32_t *pu32Dst = (uint32_t *)(pbCopy + cbDstAndMask);2918 uint32_t *pu32Dst = (uint32_t *)(pbCopy + RT_ALIGN_32(cbDstAndMask, 4)); 2911 2919 pbSrc = pbSrcXorMask; 2912 2920 switch (pCursor->xorMaskDepth)
Note:
See TracChangeset
for help on using the changeset viewer.