Home
last modified time | relevance | path

Searched refs:loadPathsIfNeeded (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/gpu/
DGrPathRange.cpp27 void GrPathRange::loadPathsIfNeeded(const void* indices, PathIndexType indexType, int count) const { in loadPathsIfNeeded() function in GrPathRange
30 return this->loadPathsIfNeeded(reinterpret_cast<const uint8_t*>(indices), count); in loadPathsIfNeeded()
32 return this->loadPathsIfNeeded(reinterpret_cast<const uint16_t*>(indices), count); in loadPathsIfNeeded()
34 return this->loadPathsIfNeeded(reinterpret_cast<const uint32_t*>(indices), count); in loadPathsIfNeeded()
DGrPathRange.h73 void loadPathsIfNeeded(const void* indices, PathIndexType, int count) const;
75 template<typename IndexType> void loadPathsIfNeeded(const IndexType* indices, int count) const { in loadPathsIfNeeded() function
/external/skia/src/gpu/text/
DGrStencilAndCoverTextContext.cpp590 glyphs->loadPathsIfNeeded(fInstanceData->indices(), fInstanceData->count()); in draw()