Lines Matching defs:srcY
114 int32_t srcY = pCopyRect->yTop - pSrcDataPoint->y;
116 Assert(srcY >= 0);
118 Assert(srcY < (int32_t)pSrc->height);
127 uint8_t *pu8Src = ((uint8_t*)pSrc->pvData) + pSrc->pitch * (!fSrcInvert ? srcY : pSrc->height - srcY - 1) + srcX * 4;
183 int32_t srcY = UnscaledCopyRect.yTop - UnscaledPos.y;
189 if (srcY < 0)
192 srcY = 0;
201 if (srcY >= pSrc->height)
208 Assert(srcY >= 0);
210 Assert(srcY < (int32_t)pSrc->height);
223 if (UnscaledSrcHeight + srcY > pSrc->height)
224 UnscaledSrcHeight = pSrc->height - srcY;
226 uint8_t *pu8Src = ((uint8_t*)pSrc->pvData) + pSrc->pitch * (!fSrcInvert ? srcY : pSrc->height - srcY - 1) + srcX * 4;