Home
last modified time | relevance | path

Searched refs:kPathsPerGroup (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/gpu/
DGrPathRange.h85 const int groupIndex = indices[i] / kPathsPerGroup; in loadPathsIfNeeded()
93 const int groupFirstPath = groupIndex * kPathsPerGroup; in loadPathsIfNeeded()
94 const int groupLastPath = SkTMin(groupFirstPath + kPathsPerGroup, fNumPaths) - 1; in loadPathsIfNeeded()
123 const int groupIndex = indices[i] / kPathsPerGroup; in assertPathsLoaded()
143 kPathsPerGroup = 16 // Paths get tracked in groups of 16 for lazy loading. enumerator
DGrPathRange.cpp16 const int numGroups = (fNumPaths + kPathsPerGroup - 1) / kPathsPerGroup; in GrPathRange()