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

  /external/skia/tests/
GradientTest.cpp 17 int fColorCount;
27 SkAutoTMalloc<SkColor> colorStorage(fColorCount);
28 SkAutoTMalloc<SkScalar> posStorage(fColorCount);
30 info->fColorCount = fColorCount;
35 REPORTER_ASSERT(reporter, info->fColorCount == fColorCount);
37 !memcmp(info->fColors, fColors, fColorCount * sizeof(SkColor)));
39 !memcmp(info->fColorOffsets, fPos, fColorCount * sizeof(SkScalar)));
55 info.fColorCount = 0
    [all...]
  /external/skia/include/core/
SkShader.h 269 * the relevant (see below) parameters for the gradient. fColorCount
272 * non-NULL. After asAGradient has run, fColorCount indicates how
306 int fColorCount; //!< In-out parameter, specifies passed size
  /external/skia/legacy/include/core/
SkShader.h 221 * the relevant (see below) parameters for the gradient. fColorCount
224 * non-NULL. After asAGradient has run, fColorCount indicates how
257 int fColorCount; //!< In-out parameter, specifies passed size
  /external/skia/src/effects/gradients/
SkGradientShaderPriv.h 137 int fColorCount;
  /external/skia/legacy/src/effects/
SkGradientShader.cpp 183 int fColorCount;
260 Thus colorCount (the caller's value, and fColorCount (our value) may
263 fColorCount = 4
265 fColorCount = colorCount;
272 fColorCount += dummyFirst + dummyLast;
275 if (fColorCount > kColorStorageCount) {
278 sk_malloc_throw(size * fColorCount));
297 fRecs = (Rec*)(fOrigColors + fColorCount);
298 if (fColorCount > 2) {
363 int colorCount = fColorCount = buffer.readU32()
    [all...]

Completed in 56 milliseconds