diff options
author | Romain Guy <romainguy@google.com> | 2012-10-16 18:42:58 -0700 |
---|---|---|
committer | Romain Guy <romainguy@google.com> | 2012-10-16 18:42:58 -0700 |
commit | 7cd90d4eecdba0f40a36945749d40df95d6d641b (patch) | |
tree | a645510f9bdf95d6ec6b3f948281096b44cd1b9c /include | |
parent | 9c1f88b83a41904064023c69f3f0eb67548f4e80 (diff) | |
download | external_skia-7cd90d4eecdba0f40a36945749d40df95d6d641b.zip external_skia-7cd90d4eecdba0f40a36945749d40df95d6d641b.tar.gz external_skia-7cd90d4eecdba0f40a36945749d40df95d6d641b.tar.bz2 |
Add Android specific API
Bug #7353771
This API is just a boolean property that tells the hardware renderer
whether it should use mipmap levels.
Change-Id: I123a334b89b0d64d711bdad43f5e2feb416de8b4
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkBitmap.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/core/SkBitmap.h b/include/core/SkBitmap.h index 57b80e5..2d5fc41 100644 --- a/include/core/SkBitmap.h +++ b/include/core/SkBitmap.h @@ -513,6 +513,16 @@ public: */ int extractMipLevel(SkBitmap* dst, SkFixed sx, SkFixed sy); +#ifdef SK_BUILD_FOR_ANDROID + bool hasHardwareMipMap() const { + return fHasHardwareMipMap; + } + + void setHasHardwareMipMap(bool hasHardwareMipMap) { + fHasHardwareMipMap = hasHardwareMipMap; + } +#endif + bool extractAlpha(SkBitmap* dst) const { return this->extractAlpha(dst, NULL, NULL, NULL); } @@ -614,6 +624,10 @@ private: uint8_t fFlags; uint8_t fBytesPerPixel; // based on config +#ifdef SK_BUILD_FOR_ANDROID + bool fHasHardwareMipMap; +#endif + /* Internal computations for safe size. */ static Sk64 ComputeSafeSize64(Config config, |