diff options
Diffstat (limited to 'include/core/SkBitmap.h')
-rw-r--r-- | include/core/SkBitmap.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/core/SkBitmap.h b/include/core/SkBitmap.h index c54fb5d227..a38cafa351 100644 --- a/include/core/SkBitmap.h +++ b/include/core/SkBitmap.h @@ -462,10 +462,15 @@ public: int extractMipLevel(SkBitmap* dst, SkFixed sx, SkFixed sy); void extractAlpha(SkBitmap* dst) const { - this->extractAlpha(dst, NULL, NULL); + this->extractAlpha(dst, NULL, NULL, NULL); } void extractAlpha(SkBitmap* dst, const SkPaint* paint, + SkIPoint* offset) const { + this->extractAlpha(dst, paint, NULL, offset); + } + + void extractAlpha(SkBitmap* dst, const SkPaint* paint, Allocator* allocator, SkIPoint* offset) const; void flatten(SkFlattenableWriteBuffer&) const; |