HomeSort by relevance Sort by last modified time
    Searched refs:isFixedColor (Results 1 - 6 of 6) sorted by null

  /external/skia/src/core/
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,
44 if (this->next(&isrcR, dst, isFixedColor, fixedColor)) {
SkLatticeIter.cpp 256 bool SkLatticeIter::next(SkIRect* src, SkRect* dst, bool* isFixedColor, SkColor* fixedColor) {
274 return this->next(src, dst, isFixedColor, fixedColor);
279 if (isFixedColor && fixedColor) {
280 *isFixedColor = fRectTypes.count() > 0
282 if (*isFixedColor) {
SkDevice.cpp 228 bool isFixedColor = false;
231 while (iter.next(&srcR, &dstR, &isFixedColor, &c)) {
232 if (isFixedColor || (srcR.width() <= 1.0f && srcR.height() <= 1.0f &&
  /external/skqp/src/core/
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(SkRect* src, SkRect* dst, bool* isFixedColor = nullptr,
SkLatticeIter.cpp 257 bool SkLatticeIter::next(SkRect* src, SkRect* dst, bool* isFixedColor, SkColor* fixedColor) {
275 return this->next(src, dst, isFixedColor, fixedColor);
280 if (isFixedColor && fixedColor) {
281 *isFixedColor = fRectTypes.count() > 0
283 if (*isFixedColor) {
SkDevice.cpp 227 bool isFixedColor = false;
230 while (iter.next(&srcR, &dstR, &isFixedColor, &c)) {
231 if (isFixedColor || (srcR.width() <= 1.0f && srcR.height() <= 1.0f &&

Completed in 84 milliseconds