Home
last modified time | relevance | path

Searched refs:canComputeFastBounds (Results 1 – 7 of 7) 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.cpp1195 if (paint && paint->canComputeFastBounds()) { in internalDrawBitmap()
1813 if (paint.canComputeFastBounds()) { in onDrawPoints()
1841 if (paint.canComputeFastBounds()) { in onDrawRect()
1866 if (paint.canComputeFastBounds()) { in onDrawOval()
1886 if (paint.canComputeFastBounds()) { in onDrawRRect()
1916 if (paint.canComputeFastBounds()) { in onDrawDRRect()
1940 if (!path.isInverseFillType() && paint.canComputeFastBounds()) { in onDrawPath()
1969 if (NULL == paint || paint->canComputeFastBounds()) { in onDrawImage()
1997 if (NULL == paint || paint->canComputeFastBounds()) { in onDrawImageRect()
2023 if (NULL == paint || paint->canComputeFastBounds()) { in onDrawBitmap()
[all …]
DSkRecordDraw.cpp548 if (paint->canComputeFastBounds()) { in AdjustForPaint()
DSkPaint.cpp2083 SkASSERT(this->getLooper()->canComputeFastBounds(*this)); in doComputeFastBounds()
/external/skia/include/core/
DSkDrawLooper.h90 bool canComputeFastBounds(const SkPaint& paint) const;
DSkPaint.h953 bool canComputeFastBounds() const { in canComputeFastBounds() function
955 return this->getLooper()->canComputeFastBounds(*this); in canComputeFastBounds()
/external/skia/gm/
Dfilterfastbounds.cpp86 SkASSERT(p.canComputeFastBounds()); in add_paint()