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

1 2 3 4 5 6

  /external/skia/gm/
skbug1719.cpp 29 SkPath clipPath;
30 clipPath.moveTo(832.f, 654.f);
31 clipPath.lineTo(1034.f, 654.f);
32 clipPath.cubicTo(1038.4183f, 654.f, 1042.f, 657.58173f, 1042.f, 662.f);
33 clipPath.lineTo(1042.f, 724.f);
34 clipPath.cubicTo(1042.f, 728.41827f, 1038.4183f, 732.f, 1034.f, 732.f);
35 clipPath.lineTo(832.f, 732.f);
36 clipPath.cubicTo(827.58173f, 732.f, 824.f, 728.41827f, 824.f, 724.f);
37 clipPath.lineTo(824.f, 662.f);
38 clipPath.cubicTo(824.f, 657.58173f, 827.58173f, 654.f, 832.f, 654.f)
    [all...]
circularclips.cpp 57 canvas->clipPath(fCircle1, true);
58 canvas->clipPath(fCircle2, true);
76 canvas->clipPath(fCircle1);
77 canvas->clipPath(fCircle2, ops[op]);
pathopsskpclip.cpp 45 rec->clipPath(p, true);
47 rec->clipPath(p, true);
bug5252.cpp 18 canvas->clipPath(clip1); // bug
22 //canvas->clipPath(clip2); // ok
complexclip3.cpp 88 canvas->clipPath(*firstClip, doAAA);
89 canvas->clipPath(*secondClip, gOps[op].fOp, doAAB);
distantclip.cpp 43 rec->clipPath(p, true);
60 // If the image is red, we erroneously decided the clipPath was empty and didn't record
simpleaaclip.cpp 110 canvas->clipPath(fBasePath, true);
111 canvas->clipPath(fRectPath, op, true);
complexclip4.cpp 60 canvas->clipPath(pathClip, kReplace_SkClipOp, fDoAAClip);
  /external/skia/samplecode/
SampleIdentityScale.cpp 67 SkPath clipPath;
68 clipPath.addRoundRect(r, SkIntToScalar(5), SkIntToScalar(5));
69 canvas->clipPath(clipPath, kIntersect_SkClipOp, true);
SampleClip.cpp 136 SkPath clipPath;
138 clipPath.addRoundRect(r, SkIntToScalar(20), SkIntToScalar(20));
140 // clipPath.toggleInverseFillType();
146 canvas->clipPath(clipPath, kIntersect_SkClipOp, SkToBool(aa));
SampleClipDrawMatch.cpp 176 canvas->clipPath(create_convex_path(offset), useAA);
179 canvas->clipPath(create_concave_path(offset), useAA);
197 canvas->clipPath(create_convex_path(offset), useAA);
203 canvas->clipPath(create_concave_path(offset), useAA);
  /external/pdfium/core/fxge/skia/
fx_skia_device_unittest.cpp 45 CFX_PathData clipPath, clipPath2;
46 clipPath.AppendRect(0, 0, 3, 1);
61 driver->SetClip_PathFill(&clipPath, &clipMatrix, 0);
80 driver->SetClip_PathFill(&clipPath, &clipMatrix, 0);
84 driver->SetClip_PathFill(&clipPath, &clipMatrix2, 0);
98 CFX_PathData clipPath;
99 clipPath.AppendRect(1, 0, 3, 1);
102 driver->SetClip_PathFill(&clipPath, &clipMatrix, 0);
105 driver->SetClip_PathFill(&clipPath, &clipMatrix, 0);
111 driver->SetClip_PathFill(&clipPath, &clipMatrix, 0)
    [all...]
  /external/pdfium/public/
fpdf_transformpage.h 138 * @param[in] clipPath - A handle to the clip path.
142 DLLEXPORT void STDCALL FPDF_DestroyClipPath(FPDF_CLIPPATH clipPath);
149 * @param[in] clipPath - A handle to the clip path.
155 FPDF_CLIPPATH clipPath);
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/view/
CircleClipFrameLayout.java 49 canvas.clipPath(mClipPath);
  /external/skia/tests/
ClipStackTest.cpp 41 s.clipPath(p, SkMatrix::I(), kIntersect_SkClipOp, doAA);
87 s.clipPath(rp, SkMatrix::I(), kUnion_SkClipOp, doAA);
120 s.clipPath(p, SkMatrix::I(), kIntersect_SkClipOp, doAA);
281 stack.clipPath(pathA, SkMatrix::I(), kIntersect_SkClipOp, false);
282 stack.clipPath(pathB, SkMatrix::I(), gOps[op], false);
342 stack.clipPath(clipA, SkMatrix::I(), kReplace_SkClipOp, false);
343 stack.clipPath(clipB, SkMatrix::I(), kUnion_SkClipOp, false);
412 stack.clipPath(path, SkMatrix::I(), kIntersect_SkClipOp, false);
506 stack.clipPath(path, SkMatrix::I(), kReplace_SkClipOp, false);
508 stack.clipPath(path, SkMatrix::I(), kReplace_SkClipOp, false)
    [all...]
PictureTest.cpp 287 canvas->clipPath(convexClip);
288 canvas->clipPath(concaveClip);
289 canvas->clipPath(convexClip, kIntersect_SkClipOp, true);
301 canvas->clipPath(concaveClip, kIntersect_SkClipOp, true);
640 canvas->clipPath(invPath);
649 canvas->clipPath(path);
650 canvas->clipPath(invPath);
659 canvas->clipPath(path);
660 canvas->clipPath(invPath, kUnion_SkClipOp);
669 canvas->clipPath(path, kDifference_SkClipOp)
    [all...]
  /external/skia/experimental/svg/model/
SkSVGNode.cpp 42 if (const auto* clipPath = localContext.clipPath()) {
44 Op(path, *clipPath, kIntersect_SkPathOp, &path);
SkSVGRenderContext.h 84 const SkPath* clipPath() const { return fClipPath.getMaybeNull(); }
103 // clipPath, if present for the current context (not inherited).
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Clipping.java 82 canvas.clipPath(mPath); // makes the clip empty
84 canvas.clipPath(mPath, Region.Op.REPLACE);
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
PathClippingTests.java 69 canvas.clipPath(path);
85 canvas.clipPath(path1);
161 canvas.clipPath(path);
179 canvas.clipPath(path);
CanvasStateTests.java 69 boolean isNonEmpty = canvas.clipPath(rectPath);
73 isNonEmpty = canvas.clipPath(rectPath);
  /frameworks/base/libs/hwui/tests/common/scenes/
ClippingAnimation.cpp 50 canvas.clipPath(&clipCircle, SkClipOp::kIntersect);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ClipRegion3Activity.java 72 canvas.clipPath(mClipPath);
ClipRegionActivity.java 85 canvas.clipPath(mClipPath);
  /external/pdfium/fpdfsdk/
fpdf_transformpage.cpp 212 // Special treatment to shading object, because the ClipPath for shading
231 DLLEXPORT void STDCALL FPDF_DestroyClipPath(FPDF_CLIPPATH clipPath) {
232 delete (CPDF_ClipPath*)clipPath;
273 FPDF_CLIPPATH clipPath) {
287 CPDF_ClipPath* pClipPath = (CPDF_ClipPath*)clipPath;

Completed in 588 milliseconds

1 2 3 4 5 6