harden requirements on SkBitmapCache

BUG=skia:
R=humper@google.com

Author: reed@google.com

Review URL: https://codereview.chromium.org/521433002
This commit is contained in:
reed 2014-08-29 10:25:26 -07:00 committed by Commit bot
parent b2f94d1f4a
commit 14b6aba099
4 changed files with 22 additions and 1 deletions

View File

@ -10,6 +10,10 @@
#include "SkMipMap.h" #include "SkMipMap.h"
#include "SkRect.h" #include "SkRect.h"
SkBitmap::Allocator* SkBitmapCache::GetAllocator() {
return SkResourceCache::GetAllocator();
}
/** /**
This function finds the bounds of the bitmap *within its pixelRef*. This function finds the bounds of the bitmap *within its pixelRef*.
If the bitmap lacks a pixelRef, it will return an empty rect, since If the bitmap lacks a pixelRef, it will return an empty rect, since
@ -91,6 +95,7 @@ void SkBitmapCache::Add(const SkBitmap& src, SkScalar invScaleX, SkScalar invSca
// degenerate, and the key we use for mipmaps // degenerate, and the key we use for mipmaps
return; return;
} }
SkASSERT(result.isImmutable());
SkResourceCache::Add(SkNEW_ARGS(BitmapRec, (src.getGenerationID(), invScaleX, invScaleY, SkResourceCache::Add(SkNEW_ARGS(BitmapRec, (src.getGenerationID(), invScaleX, invScaleY,
get_bounds_from_bitmap(src), result))); get_bounds_from_bitmap(src), result)));
} }
@ -101,6 +106,7 @@ bool SkBitmapCache::Find(uint32_t genID, int width, int height, SkBitmap* result
} }
void SkBitmapCache::Add(uint32_t genID, int width, int height, const SkBitmap& result) { void SkBitmapCache::Add(uint32_t genID, int width, int height, const SkBitmap& result) {
SkASSERT(result.isImmutable());
SkResourceCache::Add(SkNEW_ARGS(BitmapRec, (genID, SK_Scalar1, SK_Scalar1, SkResourceCache::Add(SkNEW_ARGS(BitmapRec, (genID, SK_Scalar1, SK_Scalar1,
SkIRect::MakeWH(width, height), result))); SkIRect::MakeWH(width, height), result)));
} }

View File

@ -9,17 +9,26 @@
#define SkBitmapCache_DEFINED #define SkBitmapCache_DEFINED
#include "SkScalar.h" #include "SkScalar.h"
#include "SkBitmap.h"
class SkBitmap;
class SkMipMap; class SkMipMap;
class SkBitmapCache { class SkBitmapCache {
public: public:
/**
* Use this allocator for bitmaps, so they can use ashmem when available.
*/
static SkBitmap::Allocator* GetAllocator();
/** /**
* Search based on the src bitmap and inverse scales in X and Y. If found, returns true and * Search based on the src bitmap and inverse scales in X and Y. If found, returns true and
* result will be set to the matching bitmap with its pixels already locked. * result will be set to the matching bitmap with its pixels already locked.
*/ */
static bool Find(const SkBitmap& src, SkScalar invScaleX, SkScalar invScaleY, SkBitmap* result); static bool Find(const SkBitmap& src, SkScalar invScaleX, SkScalar invScaleY, SkBitmap* result);
/*
* result must be marked isImmutable()
*/
static void Add(const SkBitmap& src, SkScalar invScaleX, SkScalar invScaleY, static void Add(const SkBitmap& src, SkScalar invScaleX, SkScalar invScaleY,
const SkBitmap& result); const SkBitmap& result);
@ -28,6 +37,10 @@ public:
* result will be set to the matching bitmap with its pixels already locked. * result will be set to the matching bitmap with its pixels already locked.
*/ */
static bool Find(uint32_t genID, int width, int height, SkBitmap* result); static bool Find(uint32_t genID, int width, int height, SkBitmap* result);
/*
* result must be marked isImmutable()
*/
static void Add(uint32_t genID, int width, int height, const SkBitmap& result); static void Add(uint32_t genID, int width, int height, const SkBitmap& result);
}; };

View File

@ -189,6 +189,7 @@ bool SkBitmapProcState::possiblyScaleImage() {
} }
SkASSERT(NULL != fScaledBitmap.getPixels()); SkASSERT(NULL != fScaledBitmap.getPixels());
fScaledBitmap.setImmutable();
SkBitmapCache::Add(fOrigBitmap, roundedDestWidth, roundedDestHeight, fScaledBitmap); SkBitmapCache::Add(fOrigBitmap, roundedDestWidth, roundedDestHeight, fScaledBitmap);
} }

View File

@ -54,6 +54,7 @@ bool SkCachingPixelRef::onNewLockPixels(LockRec* rec) {
fErrorInDecoding = true; fErrorInDecoding = true;
return false; return false;
} }
fLockedBitmap.setImmutable();
SkBitmapCache::Add(this->getGenerationID(), info.fWidth, info.fHeight, fLockedBitmap); SkBitmapCache::Add(this->getGenerationID(), info.fWidth, info.fHeight, fLockedBitmap);
} }