HomeSort by relevance Sort by last modified time
    Searched refs:clipBounds (Results 1 - 25 of 34) sorted by null

1 2

  /external/skia/legacy/src/core/
SkRasterizer.cpp 19 const SkIRect* clipBounds, SkMaskFilter* filter,
23 if (clipBounds && filter && SkMask::kJustRenderImage_CreateMode != mode) {
33 storage = *clipBounds;
35 clipBounds = &storage;
38 return this->onRasterize(fillPath, matrix, clipBounds, mask, mode);
44 const SkIRect* clipBounds,
49 return SkDraw::DrawToMask(devPath, clipBounds, NULL, NULL, mask, mode);
SkScan.cpp 23 const SkIRect& clipBounds = clip->getBounds();
25 if (clipBounds.contains(r)) {
29 if (rr.intersect(clipBounds)) {
SkScan_Antihair.cpp 405 SkRect clipBounds;
406 clipBounds.set(clip->getBounds());
416 clipBounds.inset(-SK_Scalar1, -SK_Scalar1);
418 if (!SkLineClipper::IntersectLine(pts, clipBounds, pts)) {
568 const SkIRect& clipBounds = clip->getBounds();
570 if (clipBounds.contains(outerBounds)) {
575 XRect_set(&tmpR, clipBounds);
SkCanvas.cpp 716 SkIRect clipBounds;
717 if (!this->getClipDeviceBounds(&clipBounds)) {
727 if (!ir.intersect(clipBounds)) {
734 ir = clipBounds;
    [all...]
SkDraw.cpp     [all...]
  /external/skia/src/core/
SkRasterizer.cpp 18 const SkIRect* clipBounds, SkMaskFilter* filter,
22 if (clipBounds && filter && SkMask::kJustRenderImage_CreateMode != mode) {
32 storage = *clipBounds;
34 clipBounds = &storage;
37 return this->onRasterize(fillPath, matrix, clipBounds, mask, mode);
43 const SkIRect* clipBounds,
48 return SkDraw::DrawToMask(devPath, clipBounds, NULL, NULL, mask, mode,
SkScan.cpp 23 const SkIRect& clipBounds = clip->getBounds();
25 if (clipBounds.contains(r)) {
29 if (rr.intersect(clipBounds)) {
SkBBoxRecord.cpp 33 SkIRect clipBounds;
34 if (this->getClipDeviceBounds(&clipBounds)) {
35 this->handleBBox(SkRect::MakeFromIRect(clipBounds));
SkScan_Antihair.cpp 619 SkRect clipBounds;
620 clipBounds.set(clip->getBounds());
630 clipBounds.inset(-SK_Scalar1, -SK_Scalar1);
632 if (!SkLineClipper::IntersectLine(pts, clipBounds, pts)) {
782 const SkIRect& clipBounds = clip->getBounds();
784 if (clipBounds.contains(outerBounds)) {
789 XRect_set(&tmpR, clipBounds);
SkCanvas.cpp 801 SkIRect clipBounds;
802 if (!this->getClipDeviceBounds(&clipBounds)) {
812 if (!ir.intersect(clipBounds)) {
819 ir = clipBounds;
    [all...]
SkMaskFilter.cpp 257 const SkIRect& clipBounds, NinePatch*) const {
  /external/skia/include/core/
SkRasterizer.h 30 const SkIRect* clipBounds, SkMaskFilter* filter,
37 const SkIRect* clipBounds,
SkMaskFilter.h 129 const SkIRect& clipBounds,
SkDraw.h 78 static bool DrawToMask(const SkPath& devPath, const SkIRect* clipBounds,
  /external/skia/legacy/include/core/
SkRasterizer.h 28 const SkIRect* clipBounds, SkMaskFilter* filter,
36 const SkIRect* clipBounds,
SkDraw.h 78 static bool DrawToMask(const SkPath& devPath, const SkIRect* clipBounds,
  /external/skia/include/effects/
SkLayerRasterizer.h 43 const SkIRect* clipBounds,
  /external/skia/legacy/include/effects/
SkLayerRasterizer.h 48 const SkIRect* clipBounds,
  /external/webkit/Source/WebCore/platform/graphics/win/
WebLayer.cpp 81 CGRect clipBounds = CGContextGetClipBoundingBox(context);
82 IntRect clip(enclosingIntRect(clipBounds));
  /external/skia/legacy/src/effects/
SkLayerRasterizer.cpp 48 const SkIRect* clipBounds, SkIRect* bounds) {
75 if (!SkDraw::DrawToMask(devPath, clipBounds, paint.getMaskFilter(),
87 const SkIRect* clipBounds,
94 if (!compute_bounds(fLayers, path, matrix, clipBounds, &mask->fBounds))
  /external/skia/src/effects/
SkLayerRasterizer.cpp 49 const SkIRect* clipBounds, SkIRect* bounds) {
76 if (!SkDraw::DrawToMask(devPath, clipBounds, paint.getMaskFilter(),
89 const SkIRect* clipBounds,
96 if (!compute_bounds(fLayers, path, matrix, clipBounds, &mask->fBounds))
SkBlurMaskFilter.cpp 30 const SkIRect& clipBounds,
156 const SkIRect& clipBounds,
168 // TODO: take clipBounds into account to limit our coordinates up front
  /external/webkit/Source/WebCore/platform/graphics/mac/
WebLayer.mm 75 CGRect clipBounds = CGContextGetClipBoundingBox(context);
76 IntRect clip(enclosingIntRect(clipBounds));
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWinInternal.cpp 80 CGRect clipBounds = CGContextGetClipBoundingBox(context);
81 IntRect clip(enclosingIntRect(clipBounds));
  /external/webkit/Source/WebCore/platform/graphics/
ShadowBlur.cpp 446 IntRect layerRect = calculateLayerBoundingRect(graphicsContext, shadowedRect, graphicsContext->clipBounds());
472 IntRect layerRect = calculateLayerBoundingRect(graphicsContext, rect, graphicsContext->clipBounds());
    [all...]

Completed in 457 milliseconds

1 2