Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrPathRange.cpp42 void GrPathRange::assertPathsLoaded(const void* indices, PathIndexType indexType, int count) const { in assertPathsLoaded() function in GrPathRange
45 return this->assertPathsLoaded(reinterpret_cast<const uint8_t*>(indices), count); in assertPathsLoaded()
47 return this->assertPathsLoaded(reinterpret_cast<const uint16_t*>(indices), count); in assertPathsLoaded()
49 return this->assertPathsLoaded(reinterpret_cast<const uint32_t*>(indices), count); in assertPathsLoaded()
DGrPathRange.h113 void assertPathsLoaded(const void* indices, PathIndexType, int count) const;
115 template<typename IndexType> void assertPathsLoaded(const IndexType* indices, int count) const { in assertPathsLoaded() function
DGrPathRendering.cpp141 pathRange->assertPathsLoaded(indices, indexType, count); in drawPaths()