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

1 2

  /external/chromium_org/third_party/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);
SkMaskFilter.cpp 271 const SkIRect& clipBounds, NinePatch*) const {
281 const SkIRect& clipBounds,
SkPicturePlayback.cpp 680 SkRect clipBounds;
681 if (canvas.getClipBounds(&clipBounds)) {
683 clipBounds.roundOut(&query);
    [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);
SkMaskFilter.cpp 271 const SkIRect& clipBounds, NinePatch*) const {
281 const SkIRect& clipBounds,
  /external/chromium_org/third_party/skia/include/core/
SkRasterizer.h 30 const SkIRect* clipBounds, SkMaskFilter* filter,
37 const SkIRect* clipBounds,
SkMaskFilter.h 85 const SkIRect& clipBounds,
161 const SkIRect& clipBounds,
SkDraw.h 77 static bool DrawToMask(const SkPath& devPath, const SkIRect* clipBounds,
  /external/skia/include/core/
SkRasterizer.h 30 const SkIRect* clipBounds, SkMaskFilter* filter,
37 const SkIRect* clipBounds,
SkMaskFilter.h 85 const SkIRect& clipBounds,
161 const SkIRect& clipBounds,
SkDraw.h 77 static bool DrawToMask(const SkPath& devPath, const SkIRect* clipBounds,
  /external/skia/tests/
PictureTest.cpp 470 SkIRect clipBounds;
478 bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
480 REPORTER_ASSERT(reporter, 0 == clipBounds.fLeft);
481 REPORTER_ASSERT(reporter, 0 == clipBounds.fTop);
482 REPORTER_ASSERT(reporter, 10 == clipBounds.fBottom);
483 REPORTER_ASSERT(reporter, 10 == clipBounds.fRight);
491 bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
493 REPORTER_ASSERT(reporter, 7 == clipBounds.fLeft);
494 REPORTER_ASSERT(reporter, 7 == clipBounds.fTop);
495 REPORTER_ASSERT(reporter, 8 == clipBounds.fBottom)
    [all...]
  /external/chromium_org/third_party/skia/include/effects/
SkLayerRasterizer.h 43 const SkIRect* clipBounds,
  /external/skia/include/effects/
SkLayerRasterizer.h 43 const SkIRect* clipBounds,
  /external/chromium_org/third_party/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 37 const SkIRect& clipBounds,
53 const SkIRect& clipBounds,
220 const SkIRect& clipBounds,
232 // TODO: take clipBounds into account to limit our coordinates up front
379 const SkIRect& clipBounds,
404 SkRect clipRect = SkRect::MakeFromIRect(clipBounds);
  /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 37 const SkIRect& clipBounds,
53 const SkIRect& clipBounds,
220 const SkIRect& clipBounds,
232 // TODO: take clipBounds into account to limit our coordinates up front
379 const SkIRect& clipBounds,
404 SkRect clipRect = SkRect::MakeFromIRect(clipBounds);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
TransparencyWin.cpp 210 SkRect clipBounds;
211 if (m_destContext->getClipBounds(&clipBounds)) {
212 FloatRect clipRect(clipBounds.left(), clipBounds.top(), clipBounds.width(), clipBounds.height());

Completed in 445 milliseconds

1 2