- Timestamp:
- Mar 27, 2019 12:41:27 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp
r77869 r77915 1594 1594 { 1595 1595 pThis->svga.uWidth = u32; 1596 pThis->svga.cbScanline = pThis->svga.uWidth * (RT_ALIGN(pThis->svga.uBpp, 8) / 8); 1596 1597 if (pThis->svga.fEnabled) 1597 1598 { … … 1625 1626 { 1626 1627 pThis->svga.uBpp = u32; 1628 pThis->svga.cbScanline = pThis->svga.uWidth * (RT_ALIGN(pThis->svga.uBpp, 8) / 8); 1627 1629 if (pThis->svga.fEnabled) 1628 1630 { … … 5457 5459 pHlp->pfnPrintf(pHlp, "3D enabled: %RTbool\n", pThis->svga.f3DEnabled); 5458 5460 # endif 5461 if (pThis->pDrv) 5462 { 5463 pHlp->pfnPrintf(pHlp, "Driver mode: %ux%u %ubpp\n", pThis->pDrv->cx, pThis->pDrv->cy, pThis->pDrv->cBits); 5464 pHlp->pfnPrintf(pHlp, "Driver pitch: %u (%#x)\n", pThis->pDrv->cbScanline, pThis->pDrv->cbScanline); 5465 } 5459 5466 } 5460 5467
Note:
See TracChangeset
for help on using the changeset viewer.