Searched defs:clipB (Results 1 - 3 of 3) sorted by relevance

/external/skia/samplecode/
H A DSampleComplexClip.cpp60 SkPath clipB; local
61 clipB.moveTo(SkIntToScalar(40), SkIntToScalar(10));
62 clipB.lineTo(SkIntToScalar(190), SkIntToScalar(15));
63 clipB.lineTo(SkIntToScalar(195), SkIntToScalar(190));
64 clipB.lineTo(SkIntToScalar(40), SkIntToScalar(185));
65 clipB.lineTo(SkIntToScalar(155), SkIntToScalar(100));
66 clipB.close();
80 canvas->drawPath(clipB, paint);
110 canvas->clipPath(clipB, gOps[op].fOp);
124 canvas->drawPath(clipB, pain
[all...]
/external/skia/gm/
H A Dcomplexclip.cpp76 SkPath clipB; local
77 clipB.moveTo(SkIntToScalar(40), SkIntToScalar(10));
78 clipB.lineTo(SkIntToScalar(190), SkIntToScalar(15));
79 clipB.lineTo(SkIntToScalar(195), SkIntToScalar(190));
80 clipB.lineTo(SkIntToScalar(40), SkIntToScalar(185));
81 clipB.lineTo(SkIntToScalar(155), SkIntToScalar(100));
82 clipB.close();
124 this->drawHairlines(canvas, path, clipA, clipB);
132 clipB.setFillType(doInvB ? SkPath::kInverseEvenOdd_FillType :
135 canvas->clipPath(clipB, gOp
176 drawHairlines(SkCanvas* canvas, const SkPath& path, const SkPath& clipA, const SkPath& clipB) argument
[all...]
/external/skia/src/core/
H A DSkAAClip.cpp1671 const SkAAClip* clipB = &clipBOrig; local
1674 SkTSwap(clipA, clipB);
1679 bool b_empty = clipB->isEmpty();
1687 if (b_empty || !SkIRect::Intersects(clipA->fBounds, clipB->fBounds)) {
1695 clipB->fBounds)) {
1703 return this->set(*clipB);
1709 bounds.join(clipB->fBounds);
1717 SkASSERT(SkIRect::Intersects(bounds, clipB->fBounds));
1718 SkASSERT(SkIRect::Intersects(bounds, clipB->fBounds));
1721 operateY(builder, *clipA, *clipB, o
[all...]

Completed in 153 milliseconds