Home
last modified time | relevance | path

Searched defs:MipMap (Results 1 – 1 of 1) sorted by relevance

/external/skia/src/core/
DSkBitmap.cpp42 struct SkBitmap::MipMap : SkNoncopyable { struct in SkBitmap
43 int32_t fRefCnt;
44 int fLevelCount;
48 static MipMap* Alloc(int levelCount, size_t pixelSize) { in Alloc()
65 const MipLevel* levels() const { return (const MipLevel*)(this + 1); } in levels()
66 MipLevel* levels() { return (MipLevel*)(this + 1); } in levels()
68 const void* pixels() const { return levels() + fLevelCount; } in pixels()
69 void* pixels() { return levels() + fLevelCount; } in pixels()
71 void ref() { in ref()
76 void unref() { in unref()