Searched refs:bounder (Results 1 - 11 of 11) sorted by relevance

/external/skia/src/core/
H A DSkMaskFilter.cpp23 const SkRasterClip& clip, SkBounder* bounder,
44 if (!clipper.done() && (bounder == NULL || bounder->doIRect(dstM.fBounds))) {
22 filterPath(const SkPath& devPath, const SkMatrix& matrix, const SkRasterClip& clip, SkBounder* bounder, SkBlitter* blitter) argument
H A DSkCanvas.cpp349 given a bounder, we call its commit() method, signifying that we are
354 SkAutoBounderCommit(SkBounder* bounder) : fBounder(bounder) {} argument
458 SkBounder* SkCanvas::setBounder(SkBounder* bounder) { argument
459 SkRefCnt_SafeAssign(fBounder, bounder);
460 return bounder;
H A DSkDraw.cpp516 static bool bounder_points(SkBounder* bounder, SkCanvas::PointMode mode, argument
528 return bounder->doIRect(ibounds);
560 // clear the bounder and call this again, so we don't invoke the bounder
1176 // only lock the pixels if we passed the clip and bounder tests
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DInspectorCanvas.h43 InspectorCanvas(SkBounder* bounder, SkPicture* picture) argument
48 setBounder(bounder);
/external/skia/src/utils/
H A DSkNWayCanvas.cpp274 SkBounder* SkNWayCanvas::setBounder(SkBounder* bounder) { argument
277 iter->setBounder(bounder);
279 return this->INHERITED::setBounder(bounder);
H A DSkProxyCanvas.cpp149 SkBounder* SkProxyCanvas::setBounder(SkBounder* bounder) { argument
150 return fProxy->setBounder(bounder);
H A DSkDeferredCanvas.cpp425 SkBounder* SkDeferredCanvas::setBounder(SkBounder* bounder) { argument
426 drawingCanvas()->setBounder(bounder);
427 return INHERITED::setBounder(bounder);
/external/skia/include/utils/
H A DSkProxyCanvas.h77 virtual SkBounder* setBounder(SkBounder* bounder) SK_OVERRIDE;
H A DSkDeferredCanvas.h135 virtual SkBounder* setBounder(SkBounder* bounder) SK_OVERRIDE;
/external/skia/src/gpu/
H A DSkGpuDevice.cpp895 const SkRegion& clip, SkBounder* bounder,
928 if (bounder && !bounder->doIRect(finalIRect)) {
1034 const SkRegion& clip, SkBounder* bounder,
1053 if (bounder && !bounder->doIRect(dstM.fBounds)) {
893 drawWithGPUMaskFilter(GrContext* context, const SkPath& path, SkMaskFilter* filter, const SkMatrix& matrix, const SkRegion& clip, SkBounder* bounder, GrPaint* grp) argument
1032 drawWithMaskFilter(GrContext* context, const SkPath& path, SkMaskFilter* filter, const SkMatrix& matrix, const SkRegion& clip, SkBounder* bounder, GrPaint* grp) argument
/external/skia/include/core/
H A DSkCanvas.h824 /** Get the current bounder object.
825 The bounder's reference count is unchaged.
826 @return the canva's bounder (or NULL).
830 /** Set a new bounder (or NULL).
831 Pass NULL to clear any previous bounder.
833 If a previous bounder exists, its reference count is decremented.
834 If bounder is not NULL, its reference count is incremented.
835 @param bounder the new bounder (or NULL) to be installed in the canvas
836 @return the set bounder objec
[all...]

Completed in 288 milliseconds