Lines Matching refs:destRect
2757 Log(("vmsvgaFIFOLoop: SVGA_CMD_BLIT_GMRFB_TO_SCREEN src=(%d,%d) dest id=%d (%d,%d)(%d,%d)\n", pCmd->srcOrigin.x, pCmd->srcOrigin.y, pCmd->destScreenId, pCmd->destRect.left, pCmd->destRect.top, pCmd->destRect.right, pCmd->destRect.bottom));
2763 if (pCmd->destRect.left < 0)
2764 pCmd->destRect.left = 0;
2765 if (pCmd->destRect.top < 0)
2766 pCmd->destRect.top = 0;
2767 if (pCmd->destRect.right < 0)
2768 pCmd->destRect.right = 0;
2769 if (pCmd->destRect.bottom < 0)
2770 pCmd->destRect.bottom = 0;
2772 width = pCmd->destRect.right - pCmd->destRect.left;
2773 height = pCmd->destRect.bottom - pCmd->destRect.top;
2786 unsigned offsetDest = (pCmd->destRect.left * RT_ALIGN(pThis->svga.uBpp, 8)) / 8 + pThis->svga.cbScanline * pCmd->destRect.top;
2793 vgaR3UpdateDisplay(pThis, pCmd->destRect.left, pCmd->destRect.top, pCmd->destRect.right - pCmd->destRect.left, pCmd->destRect.bottom - pCmd->destRect.top);
2923 rc = vmsvga3dSurfaceBlitToScreen(pThis, pCmd->destScreenId, pCmd->destRect, pCmd->srcImage, pCmd->srcRect, cRects, (SVGASignedRect *)(pCmd + 1));