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

  /external/webkit/WebCore/svg/graphics/filters/
SVGFEMerge.cpp 81 FloatRect destRect = calculateDrawingRect(m_mergeInputs[i]->scaledSubRegion());
82 filterContext->drawImage(m_mergeInputs[i]->resultImage()->image(), DeviceColorSpace, destRect);
  /external/webkit/WebCore/rendering/
RenderSVGImage.cpp 88 FloatRect destRect = m_localBounds;
93 imageElt->preserveAspectRatio().transformRect(destRect, srcRect);
95 paintInfo.context->drawImage(image(), DeviceColorSpace, destRect, srcRect);
RenderBoxModelObject.cpp 595 IntRect destRect;
599 calculateBackgroundImageGeometry(bgLayer, tx, ty, w, h, destRect, phase, tileSize);
600 IntPoint destOrigin = destRect.location();
601 destRect.intersect(paintInfo.rect);
602 if (!destRect.isEmpty()) {
603 phase += destRect.location() - destOrigin;
607 bool useLowQualityScaling = RenderBoxModelScaleObserver::shouldPaintBackgroundAtLowQuality(context, this, image, destRect.size());
608 context->drawTiledImage(image, style()->colorSpace(), destRect, phase, tileSize, compositeOp, useLowQualityScaling);
679 IntRect& destRect, IntPoint& phase, IntSize& tileSize)
685 // Determine the background positioning area and set destRect to the background painting area
    [all...]
  /external/webkit/WebCore/html/
HTMLCanvasElement.cpp 200 FloatRect destRect = ro->contentBoxRect();
201 FloatRect r = mapRect(rect, FloatRect(0, 0, m_size.width(), m_size.height()), destRect);
202 r.intersect(destRect);
  /external/webkit/WebCore/platform/graphics/chromium/
TransparencyWin.cpp 94 SkRect destRect;
95 destRect.fLeft = devices[i].x;
96 destRect.fTop = devices[i].y;
97 destRect.fRight = destRect.fLeft + srcBmp.width();
98 destRect.fBottom = destRect.fTop + srcBmp.height();
100 destCanvas.drawBitmapRect(srcBmp, 0, destRect);
438 SkRect destRect;
449 destRect.set(m_transformedSourceRect.x(), m_transformedSourceRect.y(), m_transformedSourceRect.right(), m_t (…)
    [all...]
  /external/webkit/WebCore/html/canvas/
CanvasRenderingContext2D.cpp 1002 FloatRect destRect = c->roundToDevicePixels(dstRect);
1003 willDraw(destRect);
1004 c->drawImage(cachedImage->image(), DeviceColorSpace, destRect, sourceRect, state().m_globalComposite);
1044 FloatRect destRect = c->roundToDevicePixels(dstRect);
1054 c->drawImage(buffer->image(), DeviceColorSpace, destRect, sourceRect, state().m_globalComposite);
1055 willDraw(destRect); // This call comes after drawImage, since the buffer we draw into may be our own, and we need to make sure it is dirty.
1104 FloatRect destRect = c->roundToDevicePixels(dstRect);
1105 willDraw(destRect);
1108 c->clip(destRect);
1109 c->translate(destRect.x(), destRect.y())
    [all...]
  /development/apps/Term/src/com/android/term/
Term.java     [all...]

Completed in 91 milliseconds