Index: src/core/SkBitmapHeap.h |
diff --git a/src/core/SkBitmapHeap.h b/src/core/SkBitmapHeap.h |
index 2547eeec74af9a3a93e12b6dd1b0be2433982b52..467a21699757a3fe76d480793ce4ae127f19c39f 100644 |
--- a/src/core/SkBitmapHeap.h |
+++ b/src/core/SkBitmapHeap.h |
@@ -220,14 +220,14 @@ private: |
struct LookupEntry { |
LookupEntry(const SkBitmap& bm) |
: fGenerationId(bm.getGenerationID()) |
- , fPixelOffset(bm.pixelRefOffset()) |
+ , fPixelOrigin(bm.pixelRefOrigin()) |
, fWidth(bm.width()) |
, fHeight(bm.height()) |
, fMoreRecentlyUsed(NULL) |
, fLessRecentlyUsed(NULL){} |
const uint32_t fGenerationId; // SkPixelRef GenerationID. |
- const size_t fPixelOffset; |
+ const SkIPoint fPixelOrigin; |
const uint32_t fWidth; |
const uint32_t fHeight; |