Searched refs:canComputeFastBounds (Results 1 – 17 of 17) sorted by relevance
15 bool SkDrawLooper::canComputeFastBounds(const SkPaint& paint) const { in canComputeFastBounds() function in SkDrawLooper25 if (!p.canComputeFastBounds()) { in canComputeFastBounds()
431 if (tmpUnfiltered.canComputeFastBounds()) { in apply_paint_to_bounds_sans_imagefilter()1080 if (bounds && !imageFilter->canComputeFastBounds()) { in clipRectBounds()2029 if (paint.canComputeFastBounds()) { in onDrawPoints()2057 if (paint.canComputeFastBounds()) { in onDrawRect()2082 if (paint.canComputeFastBounds()) { in onDrawOval()2102 if (paint.canComputeFastBounds()) { in onDrawRRect()2132 if (paint.canComputeFastBounds()) { in onDrawDRRect()2156 if (!path.isInverseFillType() && paint.canComputeFastBounds()) { in onDrawPath()2206 if (nullptr == paint || paint->canComputeFastBounds()) { in onDrawImage()2259 if (nullptr == paint || paint->canComputeFastBounds()) { in onDrawImageRect()[all …]
295 bool SkImageFilter::canComputeFastBounds() const { in canComputeFastBounds() function in SkImageFilter298 if (input && !input->canComputeFastBounds()) { in canComputeFastBounds()
2059 bool SkPaint::canComputeFastBounds() const { in canComputeFastBounds() function in SkPaint2061 return this->getLooper()->canComputeFastBounds(*this); in canComputeFastBounds()2063 if (this->getImageFilter() && !this->getImageFilter()->canComputeFastBounds()) { in canComputeFastBounds()2077 SkASSERT(this->getLooper()->canComputeFastBounds(*this)); in doComputeFastBounds()
548 if (paint->canComputeFastBounds()) { in AdjustForPaint()
104 bool SkColorFilterImageFilter::canComputeFastBounds() const { in canComputeFastBounds() function in SkColorFilterImageFilter108 return INHERITED::canComputeFastBounds(); in canComputeFastBounds()
69 bool SkPaintImageFilter::canComputeFastBounds() const { in canComputeFastBounds() function in SkPaintImageFilter
339 bool SkMatrixConvolutionImageFilter::canComputeFastBounds() const { in canComputeFastBounds() function in SkMatrixConvolutionImageFilter
27 bool canComputeFastBounds() const override;
28 bool canComputeFastBounds() const override;
83 bool canComputeFastBounds() const override;
52 bool canComputeFastBounds() const override { return false; } in canComputeFastBounds() function
88 bool canComputeFastBounds(const SkPaint& paint) const;
251 virtual bool canComputeFastBounds() const;
963 bool canComputeFastBounds() const;
1206 REPORTER_ASSERT(reporter, !lighting->canComputeFastBounds()); in DEF_TEST()1209 REPORTER_ASSERT(reporter, gray->canComputeFastBounds()); in DEF_TEST()1216 REPORTER_ASSERT(reporter, gray->canComputeFastBounds()); in DEF_TEST()1219 REPORTER_ASSERT(reporter, grayBlur->canComputeFastBounds()); in DEF_TEST()1229 REPORTER_ASSERT(reporter, !green->canComputeFastBounds()); in DEF_TEST()1232 REPORTER_ASSERT(reporter, !greenBlur->canComputeFastBounds()); in DEF_TEST()1244 REPORTER_ASSERT(reporter, identityFilter->canComputeFastBounds()); in DEF_TEST()1250 REPORTER_ASSERT(reporter, !forceOpaque->canComputeFastBounds()); in DEF_TEST()
88 SkASSERT(p.canComputeFastBounds()); in add_paint()