HomeSort by relevance Sort by last modified time
    Searched refs:AtlasEntry (Results 1 - 2 of 2) sorted by null

  /external/skia/src/gpu/effects/
GrTextureStripAtlas.h 133 * free up any allocated AtlasEntry and GrTextureStripAtlas objects
138 class AtlasEntry;
139 typedef GrTBinHashKey<AtlasEntry, sizeof(GrTextureStripAtlas::Desc)> AtlasHashKey;
140 class AtlasEntry : public ::GrNoncopyable {
142 AtlasEntry() : fAtlas(NULL) {}
143 ~AtlasEntry() { SkDELETE(fAtlas); }
149 static GrTHashTable<AtlasEntry, AtlasHashKey, 8>* gAtlasCache;
151 static GrTHashTable<AtlasEntry, AtlasHashKey, 8>* GetCache();
GrTextureStripAtlas.cpp 22 GrTHashTable<GrTextureStripAtlas::AtlasEntry,
26 GrTHashTable<GrTextureStripAtlas::AtlasEntry, GrTextureStripAtlas::AtlasHashKey, 8>*
30 gAtlasCache = SkNEW((GrTHashTable<AtlasEntry, AtlasHashKey, 8>));
40 AtlasEntry* entry = static_cast<AtlasEntry*>(info);
57 AtlasEntry* entry = GetCache()->find(key);
59 entry = SkNEW(AtlasEntry);

Completed in 31 milliseconds