Searched refs:isFixedColor (Results 1 - 3 of 3) sorted by relevance
/third_party/skia/src/core/ |
H A D | SkLatticeIter.h | 34 * isFixedColor and fixedColor specify if the rectangle is filled with a fixed color. 35 * If (*isFixedColor) is true, then (*fixedColor) contains the rectangle color. 37 bool next(SkIRect* src, SkRect* dst, bool* isFixedColor = nullptr, 41 bool next(SkRect* src, SkRect* dst, bool* isFixedColor = nullptr, in next() 44 if (this->next(&isrcR, dst, isFixedColor, fixedColor)) { in next()
|
H A D | SkLatticeIter.cpp | 256 bool SkLatticeIter::next(SkIRect* src, SkRect* dst, bool* isFixedColor, SkColor* fixedColor) { in next() argument 274 return this->next(src, dst, isFixedColor, fixedColor); in next() 279 if (isFixedColor && fixedColor) { in next() 280 *isFixedColor = fRectTypes.count() > 0 in next() 282 if (*isFixedColor) { in next()
|
H A D | SkDevice.cpp | 177 bool isFixedColor = false; in drawImageLattice() local 180 while (iter.next(&srcR, &dstR, &isFixedColor, &c)) { in drawImageLattice() 182 if (isFixedColor || (srcR.width() <= 1.0f && srcR.height() <= 1.0f && in drawImageLattice()
|
Completed in 3 milliseconds