HomeSort by relevance Sort by last modified time
    Searched defs:srcY (Results 1 - 10 of 10) sorted by null

  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fb3dfx.c 102 int srcX, srcY;
124 srcY = srcrect->y;
135 if ( srcY <= dstY ) {
137 srcY += (dstrect->h - 1);
160 tdfx_out32(LAUNCH_2D, srcX | (srcY << 16));
SDL_fbmatrox.c 125 int srcX, srcY;
148 FB_dst_to_xy(this, src, &srcX, &srcY);
153 srcY += srcrect->y;
163 if ( srcY < dstY ) {
165 srcY += (h - 1);
170 stop = start = (srcY * pitch) + srcX;
176 if ( srcY < dstY ) {
SDL_fbriva.c 115 int srcX, srcY;
136 FB_dst_to_xy(this, src, &srcX, &srcY);
141 srcY += srcrect->y;
146 Blt->TopLeftSrc = (srcY << 16) | srcX;
  /external/skia/src/core/
SkSpriteBlitterTemplate.h 29 int srcY = y - fTop;
32 fSource->SkSPRITE_SRC_GETADDR(srcX, srcY);
37 SkDEBUGCODE((void)fSource->SkSPRITE_SRC_GETADDR(srcX + width - 1, srcY + height - 1);)
39 SkSPRITE_PREAMBLE((*fSource), srcX, srcY);
  /external/webkit/WebCore/svg/graphics/filters/
SVGFEDisplacementMap.cpp 117 int srcY = y + static_cast<int>(scaleY * srcPixelArrayB->get(dstIndex + m_yChannelSelector - 1) + scaleAdjustmentY);
119 if (srcX < 0 || srcX >= imageRect.width() || srcY < 0 || srcY >= imageRect.height())
122 unsigned char pixelValue = srcPixelArrayA->get(srcY * stride + srcX * 4 + channel);
  /external/skia/src/utils/
SkNinePatch.cpp 235 const int32_t srcY[4] = {
250 s.fTop = srcY[y];
251 s.fBottom = srcY[y+1];