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

/vbox/src/VBox/Devices/Graphics/
H A DDevVGA.cpp5123 int32_t ySrcCorrected = ySrc; local
5135 if (ySrcCorrected < 0)
5137 ySrcCorrected += hCorrected; /* Compute yBottom, which is also the new height. */
5138 hCorrected = (ySrcCorrected < 0) ? 0 : ySrcCorrected;
5139 ySrcCorrected = 0;
5149 if (ySrcCorrected + hCorrected > u32SrcHeight)
5152 hCorrected = u32SrcHeight > (uint32_t)ySrcCorrected? u32SrcHeight - ySrcCorrected: 0;
5156 LogFlow(("vgaPortCopyRect: %d,%d %dx%d (corrected coords)\n", xSrcCorrected, ySrcCorrected, wCorrecte
[all...]

Completed in 69 milliseconds