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

1 2

  /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);
  /external/skia/src/utils/
SkProxyCanvas.cpp 58 bool SkProxyCanvas::clipPath(const SkPath& path, SkRegion::Op op) {
59 return fProxy->clipPath(path, op);
SkDumpCanvas.cpp 236 bool SkDumpCanvas::clipPath(const SkPath& path, SkRegion::Op op) {
239 this->dump(kClip_Verb, NULL, "clipPath(%s %s)", str.c_str(), toString(op));
240 return this->INHERITED::clipPath(path, op);
SkNWayCanvas.cpp 133 bool SkNWayCanvas::clipPath(const SkPath& path, SkRegion::Op op) {
136 iter->clipPath(path, op);
138 return this->INHERITED::clipPath(path, op);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceClipper.cpp 113 Path clipPath = Path();
138 if (clipPath.isEmpty()) {
139 styled->toClipPath(clipPath);
149 clipPath.transform(transform);
152 if (clipPath.isEmpty())
153 clipPath.addRect(FloatRect());
154 context->clipPath(clipPath, clipRule);
190 // clipPath can also be clipped by another clipPath
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 197 void GraphicsContext::clipPath(const Path& path, WindRule clipRule)
202 m_data->clipPath(path, PainterOpenVG::IntersectClip, clipRule);
380 m_data->clipPath(path, PainterOpenVG::IntersectClip, m_state.fillRule);
393 m_data->clipPath(path, PainterOpenVG::SubtractClip, m_state.fillRule);
427 m_data->clipPath(path, PainterOpenVG::SubtractClip, m_state.fillRule);
450 m_data->clipPath(path, PainterOpenVG::IntersectClip, m_state.fillRule);
PainterOpenVG.cpp 784 clipPath(scissorRectPath, PainterOpenVG::IntersectClip);
788 void PainterOpenVG::clipPath(const Path& path, PainterOpenVG::ClipOperation maskOp, WindRule clipRule)
    [all...]
  /external/skia/gpu/src/
GrGpu.cpp 459 const GrPath* clipPath = NULL;
465 clipPath = &clip.getPath(c);
466 pr = this->getClipPathRenderer(*clipPath, NonInvertedFill(fill));
468 !pr->requiresStencilPass(this, *clipPath,
504 pr->drawPath(this, 0, *clipPath, NonInvertedFill(fill),
507 pr->drawPathToStencil(this, *clipPath,
526 pr->drawPath(this, 0, *clipPath, fill, NULL);
  /external/skia/src/core/
SkPictureRecord.cpp 138 bool SkPictureRecord::clipPath(const SkPath& path, SkRegion::Op op) {
152 return this->INHERITED::clipPath(path, op);
SkCanvas.cpp 529 all calls to canvas->clipRect() and canvas->clipPath(), we can't exactly
938 // we explicitly call "our" version of clipPath.
942 return this->SkCanvas::clipPath(path, op);
978 bool SkCanvas::clipPath(const SkPath& path, SkRegion::Op op) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 334 void GraphicsContext::clipPath(const Path&, WindRule)
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 101 canvas.clipPath(path, Region.Op.DIFFERENCE);
CropImage.java 283 c.clipPath(p, Region.Op.DIFFERENCE);
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp 373 void clipPathAntiAliased(const SkPath& clipPath)
380 m_state->antiAliasClipPaths.append(clipPath);
382 SkRect bounds = clipPath.getBounds();
888 void GraphicsContext::clipPath(const Path& pathToClip, WindRule clipRule)
895 GC2CANVAS(this)->clipPath(path);
904 GC2CANVAS(this)->clipPath(*p.platformPath(), SkRegion::kDifference_Op);
    [all...]
LayerAndroid.cpp 85 virtual bool clipPath(const SkPath&, SkRegion::Op) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 596 void GraphicsContext::clipPath(const Path& path, WindRule clipRule)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 448 clipPath(path, RULE_NONZERO);
851 void GraphicsContext::clipPath(const Path& path, WindRule clipRule)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GLES2Canvas.cpp 354 void GLES2Canvas::clipPath(const Path& path)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 796 void GraphicsContext::clipPath(const Path& path, WindRule clipRule)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 378 platformContext()->gpuCanvas()->clipPath(path);
411 platformContext()->canvas()->clipPath(path, SkRegion::kDifference_Op);
414 void GraphicsContext::clipPath(const Path& pathToClip, WindRule clipRule)
420 platformContext()->gpuCanvas()->clipPath(pathToClip);
    [all...]
  /external/webkit/Source/WebKit/android/jni/
PictureSet.cpp 782 canvas->clipPath(pathClip);
877 virtual bool clipPath(const SkPath&, SkRegion::Op) {
    [all...]
  /frameworks/base/core/jni/android/graphics/
Canvas.cpp 261 static jboolean clipPath(JNIEnv* env, jobject, SkCanvas* canvas,
263 return canvas->clipPath(*path, (SkRegion::Op)op);
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Canvas.java 317 * calls to translate,scale,rotate,skew,concat or clipRect,clipPath
329 * clipRect,clipPath will all operate as usual, but when the balancing
344 * scale, rotate, skew, concat or clipRect, clipPath all operate on this
376 * scale, rotate, skew, concat or clipRect, clipPath all operate on this
631 public boolean clipPath(Path path, Region.Op op) {
641 public boolean clipPath(Path path) {
642 return clipPath(path, Region.Op.INTERSECT);
647 * clipRect() and clipPath() which transform their arguments by the
662 * clipRect() and clipPath() which transform their arguments by the
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
CanvasTest.java     [all...]
  /external/skia/src/pdf/
SkPDFDevice.cpp 264 static void emit_clip(SkPath* clipPath, SkRect* clipRect,
266 SkASSERT(clipPath || clipRect);
269 if (clipPath) {
270 SkPDFUtils::EmitPath(*clipPath, contentStream);
271 clipFill = clipPath->getFillType();
328 SkPath clipPath;
329 SkAssertResult(clipRegion.getBoundaryPath(&clipPath));
330 emit_clip(&clipPath, NULL, fContentStream);
    [all...]

Completed in 1249 milliseconds

1 2