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

  /external/skia/gm/
nocolorbleed.cpp 48 SkRect dstRect;
53 dstRect.setXYWH(SkIntToScalar(0), SkIntToScalar(0)
55 canvas->drawBitmapRect(sprite, &srcRect, dstRect, &paint);
56 dstRect.setXYWH(SkIntToScalar(100), SkIntToScalar(0)
58 canvas->drawBitmapRect(sprite, &srcRect, dstRect);
61 dstRect.setXYWH(SkIntToScalar(25), SkIntToScalar(125)
63 canvas->drawBitmapRect(sprite, &srcRect, dstRect, &paint);
64 dstRect.setXYWH(SkIntToScalar(125), SkIntToScalar(125)
66 canvas->drawBitmapRect(sprite, &srcRect, dstRect);
drawbitmaprect.cpp 100 SkRect dstRect = { 0, 0, SkIntToScalar(64), SkIntToScalar(64)};
132 canvas->drawBitmapRect(fLargeBitmap, &srcRect, dstRect);
139 SkScalar baseline = dstRect.height() +
147 canvas->drawRect(dstRect, blackPaint);
149 canvas->translate(dstRect.width() + SK_Scalar1 * kPadX, 0);
151 if ((dstRect.width() + kPadX) * rowCount > gSize) {
153 canvas->translate(0, dstRect.height() + SK_Scalar1 * kPadY);
177 canvas->drawBitmapRect(bm, &srcRect, dstRect, &paint);
  /external/skia/src/gpu/
GrSWMaskHelper.cpp 208 GrRect dstRect = GrRect::MakeLTRB(
213 target->drawRect(dstRect, NULL, srcRects, NULL);
  /external/webkit/Source/WebCore/platform/graphics/gpu/
Texture.cpp 178 IntRect dstRect = updateRectIntersected;
179 dstRect.move(-tileBoundsWithBorder.x(), -tileBoundsWithBorder.y());
198 dstRect.x(),
199 dstRect.y(),
  /external/qemu/distrib/sdl-1.2.15/test/
testblitspeed.c 149 SDL_Rect dstRect;
153 dstRect.x = x;
154 dstRect.y = y;
155 dstRect.w = srcRect.w = src->w; /* SDL will clip as appropriate. */
156 dstRect.h = srcRect.h = src->h;
159 SDL_BlitSurface(src, &srcRect, dst, &dstRect);
  /hardware/qcom/display/libhwcomposer/
hwc_copybit.cpp 329 copybit_rect_t dstRect = {displayFrame.left, displayFrame.top,
472 err = copybit->stretch(copybit, &dst, &src, &dstRect, &srcRect,
  /external/skia/src/effects/
SkBicubicImageFilter.cpp 91 SkRect dstRect = SkRect::MakeWH(SkScalarMul(SkIntToScalar(src.width()), fScale.fWidth),
94 dstRect.roundOut(&dstIRect);
104 inverse.setRectToRect(dstRect, srcRect, SkMatrix::kFill_ScaleToFit);
343 SkRect dstRect = SkRect::MakeWH(srcBM.width() * fScale.fWidth,
348 desc.fWidth = SkScalarCeilToInt(dstRect.width());
349 desc.fHeight = SkScalarCeilToInt(dstRect.height());
362 context->drawRectToRect(paint, dstRect, srcRect);