HomeSort by relevance Sort by last modified time
    Searched full:srcrect (Results 76 - 100 of 148) sorted by null

1 2 34 5 6

  /external/chromium_org/third_party/skia/src/effects/
SkMagnifierImageFilter.cpp 261 SkMagnifierImageFilter::SkMagnifierImageFilter(SkRect srcRect, SkScalar inset)
262 : INHERITED(0), fSrcRect(srcRect), fInset(inset) {
263 SkASSERT(srcRect.x() >= 0 && srcRect.y() >= 0 && inset >= 0);
SkBlurMaskFilter.cpp 405 SkRect srcRect(srcBounds);
407 // Outset srcRect and clipRect by 3 * sigma, to compute affected blur area.
408 srcRect.outset(SkFloatToScalar(sigma3), SkFloatToScalar(sigma3));
410 srcRect.intersect(clipRect);
411 *maskRect = srcRect;
SkDisplacementMapEffect.cpp 314 SkRect srcRect;
315 src.getBounds(&srcRect);
316 SkRect dstRect = srcRect;
318 context->drawRectToRect(paint, srcRect, dstRect);
  /external/skia/src/effects/
SkMagnifierImageFilter.cpp 261 SkMagnifierImageFilter::SkMagnifierImageFilter(SkRect srcRect, SkScalar inset)
262 : INHERITED(0), fSrcRect(srcRect), fInset(inset) {
263 SkASSERT(srcRect.x() >= 0 && srcRect.y() >= 0 && inset >= 0);
SkBlurMaskFilter.cpp 405 SkRect srcRect(srcBounds);
407 // Outset srcRect and clipRect by 3 * sigma, to compute affected blur area.
408 srcRect.outset(SkFloatToScalar(sigma3), SkFloatToScalar(sigma3));
410 srcRect.intersect(clipRect);
411 *maskRect = srcRect;
SkDisplacementMapEffect.cpp 314 SkRect srcRect;
315 src.getBounds(&srcRect);
316 SkRect dstRect = srcRect;
318 context->drawRectToRect(paint, srcRect, dstRect);
  /frameworks/av/include/media/stagefright/
YUVCanvas.h 54 const Rect& srcRect,
  /external/chromium_org/content/browser/renderer_host/
backing_store_aura.cc 128 SkIRect srcrect = SkIRect::MakeXYWH(x, y, local
139 canvas_.get()->drawBitmapRect(sk_bitmap, &srcrect, dstrect, &copy_paint);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/
SkiaUtils.cpp 136 void ClipRectToCanvas(const GraphicsContext* context, const SkRect& srcRect, SkRect* destRect)
138 if (!context->getClipBounds(destRect) || !destRect->intersect(srcRect))
  /external/chromium_org/third_party/skia/src/gpu/
GrInOrderDrawBuffer.h 149 const SkIRect& srcRect,
153 const SkIRect& srcRect,
GrDrawTarget.h 342 * srcRect is non-NULL and srcMatrix is non-NULL
343 * then srcRect will be transformed by srcMatrix.
413 * copied are specified by srcRect. They are copied to a rect of the same
423 const SkIRect& srcRect,
431 const SkIRect& srcRect,
669 // This method is called by copySurface The srcRect is guaranteed to be entirely within the
670 // src bounds. Likewise, the dst rect implied by dstPoint and srcRect's width and height falls
675 const SkIRect& srcRect,
681 // are the same as onCopySurface(), i.e. srcRect and dstPoint are clipped to be inside the src
685 const SkIRect& srcRect,
    [all...]
  /external/chromium_org/third_party/skia/src/utils/debugger/
SkDrawCommand.cpp 125 void render_bitmap(SkCanvas* canvas, const SkBitmap& input, const SkRect* srcRect = NULL) {
144 if (NULL != srcRect) {
145 SkRect r = SkRect::MakeLTRB(srcRect->fLeft * xScale + SK_Scalar1,
146 srcRect->fTop * yScale + SK_Scalar1,
147 srcRect->fRight * xScale + SK_Scalar1,
148 srcRect->fBottom * yScale + SK_Scalar1);
373 canvas->drawBitmapRectToRect(fBitmap, this->srcRect(), fDst, fPaintPtr);
377 render_bitmap(canvas, fBitmap, this->srcRect());
  /external/skia/src/gpu/
GrInOrderDrawBuffer.h 149 const SkIRect& srcRect,
153 const SkIRect& srcRect,
GrDrawTarget.h 342 * srcRect is non-NULL and srcMatrix is non-NULL
343 * then srcRect will be transformed by srcMatrix.
413 * copied are specified by srcRect. They are copied to a rect of the same
423 const SkIRect& srcRect,
431 const SkIRect& srcRect,
669 // This method is called by copySurface The srcRect is guaranteed to be entirely within the
670 // src bounds. Likewise, the dst rect implied by dstPoint and srcRect's width and height falls
675 const SkIRect& srcRect,
681 // are the same as onCopySurface(), i.e. srcRect and dstPoint are clipped to be inside the src
685 const SkIRect& srcRect,
    [all...]
  /external/skia/src/utils/debugger/
SkDrawCommand.cpp 125 void render_bitmap(SkCanvas* canvas, const SkBitmap& input, const SkRect* srcRect = NULL) {
144 if (NULL != srcRect) {
145 SkRect r = SkRect::MakeLTRB(srcRect->fLeft * xScale + SK_Scalar1,
146 srcRect->fTop * yScale + SK_Scalar1,
147 srcRect->fRight * xScale + SK_Scalar1,
148 srcRect->fBottom * yScale + SK_Scalar1);
373 canvas->drawBitmapRectToRect(fBitmap, this->srcRect(), fDst, fPaintPtr);
377 render_bitmap(canvas, fBitmap, this->srcRect());
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_RLEaccel.c 784 Uint8 *dstbuf, SDL_Rect *srcrect, unsigned alpha)
790 int linecount = srcrect->h; \
792 int left = srcrect->x; \
793 int right = left + srcrect->w; \
840 int SDL_RLEBlit(SDL_Surface *src, SDL_Rect *srcrect,
865 int vskip = srcrect->y;
902 if ( srcrect->x || srcrect->w != src->w ) {
903 RLEClipBlit(w, srcbuf, dst, dstbuf, srcrect, alpha);
909 int linecount = srcrect->h;
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGpuGL.cpp     [all...]
  /external/skia/src/gpu/gl/
GrGpuGL.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsContext.h 238 void drawImage(Image*, const IntPoint& destPoint, const IntRect& srcRect, CompositeOperator = CompositeSourceOver, RespectImageOrientationEnum = DoNotRespectImageOrientation);
240 void drawImage(Image*, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator = CompositeSourceOver, RespectImageOrientationEnum = DoNotRespectImageOrientation, bool useLowQualityScale = false);
241 void drawImage(Image*, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator, BlendMode, RespectImageOrientationEnum = DoNotRespectImageOrientation, bool useLowQualityScale = false);
245 void drawTiledImage(Image*, const IntRect& destRect, const IntRect& srcRect,
251 void drawImageBuffer(ImageBuffer*, const IntPoint& destPoint, const IntRect& srcRect, CompositeOperator = CompositeSourceOver, BlendMode = BlendModeNormal);
252 void drawImageBuffer(ImageBuffer*, const IntRect& destRect, const IntRect& srcRect, CompositeOperator = CompositeSourceOver, BlendMode = BlendModeNormal, bool useLowQualityScale = false);
254 void drawImageBuffer(ImageBuffer*, const FloatRect& destRect, const FloatRect& srcRect, CompositeOperator = CompositeSourceOver, BlendMode = BlendModeNormal, bool useLowQualityScale = false);
ImageBuffer.cpp 245 void ImageBuffer::draw(GraphicsContext* context, const FloatRect& destRect, const FloatRect& srcRect,
253 context->drawImage(image.get(), destRect, srcRect, op, blendMode, DoNotRespectImageOrientation, useLowQualityScale);
256 void ImageBuffer::drawPattern(GraphicsContext* context, const FloatRect& srcRect, const FloatSize& scale,
264 image->drawPattern(context, srcRect, scale, phase, op, destRect, blendMode);
BitmapImage.h 104 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator, BlendMode) OVERRIDE;
105 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator, BlendMode, RespectImageOrientationEnum) OVERRIDE;
FloatRect.h 234 // Map rect r from srcRect to an equivalent rect in destRect.
235 FloatRect mapRect(const FloatRect& r, const FloatRect& srcRect, const FloatRect& destRect);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FilterEffect.cpp 127 IntRect FilterEffect::drawingRegionOfInputImage(const IntRect& srcRect) const
129 return IntRect(IntPoint(srcRect.x() - m_absolutePaintRect.x(),
130 srcRect.y() - m_absolutePaintRect.y()), srcRect.size());
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_copybit.cpp 323 copybit_rect_t srcRect = {sourceCrop.left, sourceCrop.top,
440 &srcRect, &tmp_it);
450 srcRect = tmp_rect;
472 err = copybit->stretch(copybit, &dst, &src, &dstRect, &srcRect,
  /hardware/qcom/display/msm8x26/libhwcomposer/
hwc_copybit.cpp 323 copybit_rect_t srcRect = {sourceCrop.left, sourceCrop.top,
440 &srcRect, &tmp_it);
450 srcRect = tmp_rect;
472 err = copybit->stretch(copybit, &dst, &src, &dstRect, &srcRect,

Completed in 1101 milliseconds

1 2 34 5 6