Searched refs:verbCnt (Results 1 - 3 of 3) sorted by relevance
/external/skia/src/gpu/gl/ |
H A D | GrGLPath.cpp | 94 int verbCnt = skPath.countVerbs(); local 98 SkSTArray<16, GrGLubyte, true> pathCommands(verbCnt); 175 SkASSERT(verbCnt == pathCommands.count()); 214 int verbCnt = skPath.countVerbs(); local 217 SkSTArray<16, GrGLubyte, true> pathCommands(verbCnt); 222 pathCommands.resize_back(verbCnt); 225 skPath.getVerbs(&pathCommands[0], verbCnt); 228 for (int i = 0; i < verbCnt; ++i) { 233 SkASSERT(verbCnt == pathCommands.count());
|
/external/skia/src/gpu/ |
H A D | GrPath.cpp | 67 const int verbCnt = path.countVerbs(); local 68 if (verbCnt > kSimpleVolatilePathVerbLimit) { 99 const int verbData32Cnt = ARRAY_DATA32_COUNT(uint8_t, verbCnt); 106 // 0) domain, key length, uint32_t for fill type and uint32_t for verbCnt 118 // Serialize the verbCnt to make the whole message unambiguous. 129 builder[i++] = SkToU32(verbCnt); // The path limit is compile-asserted above, so the cast is ok. 134 if (verbData32Cnt != static_cast<int>((verbCnt * sizeof(uint8_t) / sizeof(uint32_t)))) { 137 path.getVerbs(reinterpret_cast<uint8_t*>(&builder[i]), verbCnt); local
|
/external/skia/src/core/ |
H A D | SkPath.cpp | 441 int verbCnt = fPathRef->countVerbs(); local 442 while (*currVerb < verbCnt && (!allowPartial || !autoClose)) {
|
Completed in 845 milliseconds