Lines Matching defs:srcHeight
99 unsigned int srcWidth, srcHeight;
733 exaScratch.srcHeight = pMsk->pDrawable->height;
751 exaScratch.srcHeight = pSrc->pDrawable->height;
945 srcY = ((srcY % (int) exaScratch.srcHeight) + (int) exaScratch.srcHeight)
946 % (int) exaScratch.srcHeight;
949 opHeight = exaScratch.srcHeight - srcY;
987 opHeight = ((opY + height) - optempY) > exaScratch.srcHeight
988 ? exaScratch.srcHeight : ((opY + height) - optempY);
994 opHeight = ((opY + height) - optempY) > (exaScratch.srcHeight -
996 ? (exaScratch.srcHeight - srcY) : ((opY + height)
1003 opHeight = ((opY + height) - optempY) > exaScratch.srcHeight
1004 ? exaScratch.srcHeight : ((opY + height) - optempY);
1292 /* When mask exists, exaScratch.srcWidth and exaScratch.srcHeight are
1302 * exaScratch.srcWidth and exaScratch.srcHeight */
1307 if ((exaScratch.srcHeight - maskY) < opHeight)
1308 opHeight = exaScratch.srcHeight - maskY;
1314 if (((srcY >= 0 && srcY >= exaScratch.srcHeight)
1343 if ((exaScratch.srcHeight - srcY) < opHeight)
1344 opHeight = exaScratch.srcHeight - srcY;
1377 /* EXA has taken care of adjusting srcHeight if it gets cut on the bottom */
1378 height = opHeight = exaScratch.srcHeight;
1384 if (exaScratch.srcHeight < opHeight)
1385 opHeight = exaScratch.srcHeight;
1394 if ((exaScratch.srcHeight - srcX) < opHeight)
1395 opHeight = exaScratch.srcHeight - srcX;
1459 * exaScratch.srcWidth and exaScratch.srcHeight */
1464 opHeight = ((dstY + height) - opY) > (exaScratch.srcHeight - maskY)
1465 ? (exaScratch.srcHeight - maskY) : (dstY + height) - opY;
1481 (exaScratch.srcHeight - srcY) ?
1482 (exaScratch.srcHeight - srcY) : (dstY + height) - opY;
1487 opHeight = ((dstY + height) - opY) > exaScratch.srcHeight ?
1488 exaScratch.srcHeight : (dstY + height) - opY;
1496 (exaScratch.srcHeight - srcX) ? (exaScratch.srcHeight -
1509 * Additionally it forces the drawing into tiles of srcWidth/srcHeight
1514 exaScratch.srcHeight);