Lines Matching refs:SkMask
25 size_t SkMask::computeImageSize() const { in computeImageSize()
29 size_t SkMask::computeTotalImageSize() const { in computeTotalImageSize()
31 if (fFormat == SkMask::k3D_Format) { in computeTotalImageSize()
40 uint8_t* SkMask::AllocImage(size_t size, AllocType at) { in AllocImage()
52 void SkMask::FreeImage(void* image) { in FreeImage()
56 SkMask SkMask::PrepareDestination(int radiusX, int radiusY, const SkMask& src) { in PrepareDestination()
59 SkMask dst; in PrepareDestination()
76 dst.fFormat = SkMask::kA8_Format; in PrepareDestination()
81 dst.fImage = SkMask::AllocImage(toAlloc); in PrepareDestination()
99 static int maskFormatToShift(SkMask::Format format) { in maskFormatToShift()
101 SkASSERT(SkMask::kBW_Format != format); in maskFormatToShift()
105 void* SkMask::getAddr(int x, int y) const { in getAddr()