Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(180)

Unified Diff: src/core/SkPicturePlayback.h

Issue 6873050: Handle recording a bitmap if copy fails. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 12 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/core/SkPictureRecord.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkPicturePlayback.h
diff --git a/src/core/SkPicturePlayback.h b/src/core/SkPicturePlayback.h
index 8a7ee0af32c1c125320385677052df8ac60c026a..9e495fa6cf83a3264bbedc24e39a04369312765d 100644
--- a/src/core/SkPicturePlayback.h
+++ b/src/core/SkPicturePlayback.h
@@ -93,7 +93,11 @@ private:
};
const SkBitmap& getBitmap(SkReader32& reader) {
- int index = reader.readInt();
+ const int index = reader.readInt();
+ if (SkBitmapHeap::INVALID_SLOT == index) {
+ SkDebugf("An invalid bitmap was recorded!\n");
+ return fBadBitmap;
+ }
return (*fBitmaps)[index];
}
@@ -190,6 +194,10 @@ private: // these help us with reading/writing
void flattenToBuffer(SkOrderedWriteBuffer&) const;
private:
+ // Only used by getBitmap() if the passed in index is SkBitmapHeap::INVALID_SLOT. This empty
+ // bitmap allows playback to draw nothing and move on.
+ SkBitmap fBadBitmap;
+
SkAutoTUnref<SkBitmapHeap> fBitmapHeap;
SkAutoTUnref<SkPathHeap> fPathHeap;
« no previous file with comments | « no previous file | src/core/SkPictureRecord.cpp » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b