Searched defs:yStart (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/Graphics/
H A DDevVGA.cpp2090 int vgaR3UpdateDisplay(VGAState *s, unsigned xStart, unsigned yStart, unsigned width, unsigned height) argument
2098 s->pDrv->pfnUpdateRect(s->pDrv, xStart, yStart, width, height);
2137 unsigned offsetSource = (xStart * bits) / 8 + s->svga.cbScanline * yStart;
2138 unsigned offsetDest = (xStart * RT_ALIGN(s->pDrv->cBits, 8)) / 8 + s->pDrv->cbScanline * yStart;
2143 for(unsigned y = yStart; y < yStart + height; y++)
2150 s->pDrv->pfnUpdateRect(s->pDrv, xStart, yStart, width, height);

Completed in 65 milliseconds