Home
last modified time | relevance | path

Searched refs:canComputeFastBounds (Results 1 – 10 of 10) sorted by relevance

/external/skia/src/core/
DSkDrawLooper.cpp15 bool SkDrawLooper::canComputeFastBounds(const SkPaint& paint) const { in canComputeFastBounds() function in SkDrawLooper
25 if (!p.canComputeFastBounds()) { in canComputeFastBounds()
DSkCanvas.cpp431 if (tmpUnfiltered.canComputeFastBounds()) { in apply_paint_to_bounds_sans_imagefilter()
1010 if (bounds && !imageFilter->canComputeFastBounds()) { in clipRectBounds()
2041 if (paint.canComputeFastBounds()) { in onDrawPoints()
2076 if (paint.canComputeFastBounds()) { in onDrawRect()
2107 if (paint.canComputeFastBounds()) { in onDrawRegion()
2125 if (paint.canComputeFastBounds()) { in onDrawOval()
2145 if (paint.canComputeFastBounds()) { in onDrawArc()
2164 if (paint.canComputeFastBounds()) { in onDrawRRect()
2191 if (paint.canComputeFastBounds()) { in onDrawDRRect()
2214 if (!path.isInverseFillType() && paint.canComputeFastBounds()) { in onDrawPath()
[all …]
DSkImageFilter.cpp266 bool SkImageFilter::canComputeFastBounds() const { in canComputeFastBounds() function in SkImageFilter
272 if (input && !input->canComputeFastBounds()) { in canComputeFastBounds()
DSkPaint.cpp1987 bool SkPaint::canComputeFastBounds() const { in canComputeFastBounds() function in SkPaint
1989 return this->getLooper()->canComputeFastBounds(*this); in canComputeFastBounds()
1991 if (this->getImageFilter() && !this->getImageFilter()->canComputeFastBounds()) { in canComputeFastBounds()
2005 SkASSERT(this->getLooper()->canComputeFastBounds(*this)); in doComputeFastBounds()
DSkRecordDraw.cpp573 if (paint->canComputeFastBounds()) { in AdjustForPaint()
/external/skia/include/core/
DSkDrawLooper.h79 bool canComputeFastBounds(const SkPaint& paint) const;
DSkImageFilter.h218 bool canComputeFastBounds() const;
DSkPaint.h981 bool canComputeFastBounds() const;
/external/skia/tests/
DImageFilterTest.cpp1626 REPORTER_ASSERT(reporter, !lighting->canComputeFastBounds()); in DEF_TEST()
1631 REPORTER_ASSERT(reporter, gray->canComputeFastBounds()); in DEF_TEST()
1638 REPORTER_ASSERT(reporter, gray->canComputeFastBounds()); in DEF_TEST()
1642 REPORTER_ASSERT(reporter, grayBlur->canComputeFastBounds()); in DEF_TEST()
1654 REPORTER_ASSERT(reporter, !green->canComputeFastBounds()); in DEF_TEST()
1658 REPORTER_ASSERT(reporter, !greenBlur->canComputeFastBounds()); in DEF_TEST()
1671 REPORTER_ASSERT(reporter, identityFilter->canComputeFastBounds()); in DEF_TEST()
1677 REPORTER_ASSERT(reporter, !forceOpaque->canComputeFastBounds()); in DEF_TEST()
/external/skia/gm/
Dfilterfastbounds.cpp89 SkASSERT(p.canComputeFastBounds()); in add_paint()