HomeSort by relevance Sort by last modified time
    Searched defs:fColorCount (Results 1 - 2 of 2) sorted by null

  /external/skia/include/core/
SkShader.h 219 * the relevant (see below) parameters for the gradient. fColorCount
222 * non-NULL. After asAGradient has run, fColorCount indicates how
255 int fColorCount; //!< In-out parameter, specifies passed size
  /external/skia/src/effects/
SkGradientShader.cpp 139 int fColorCount;
222 Thus colorCount (the caller's value, and fColorCount (our value) may
225 fColorCount = 4
227 fColorCount = colorCount;
234 fColorCount += dummyFirst + dummyLast;
237 if (fColorCount > kColorStorageCount) {
240 sk_malloc_throw(size * fColorCount));
259 fRecs = (Rec*)(fOrigColors + fColorCount);
260 if (fColorCount > 2) {
325 int colorCount = fColorCount = buffer.readU32()
    [all...]

Completed in 24 milliseconds