aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar rileya@google.com <rileya@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-09-13 21:47:48 +0000
committerGravatar rileya@google.com <rileya@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-09-13 21:47:48 +0000
commit90f2d07d34a8078b615c2441dea7c09eacb67663 (patch)
treeeb694053dd17f93770f245fda67ddfe464328dca
parent8515e79a7699922e0f95f93e8cc11d4c88657c58 (diff)
Fix for gcc compile error. Unreviewed.
git-svn-id: http://skia.googlecode.com/svn/trunk@5538 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--src/core/SkPictureStateTree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkPictureStateTree.h b/src/core/SkPictureStateTree.h
index 96249d0b24..f1897c3453 100644
--- a/src/core/SkPictureStateTree.h
+++ b/src/core/SkPictureStateTree.h
@@ -70,7 +70,7 @@ public:
/** Returns the next offset into the picture stream, or kDrawComplete if complete. */
uint32_t draw();
static const uint32_t kDrawComplete = SK_MaxU32;
- Iterator() : fValid(false) { }
+ Iterator() : fPlaybackMatrix(), fValid(false) { }
bool isValid() { return fValid; }
private:
Iterator(const SkTDArray<void*>& draws, SkCanvas* canvas, Node* root);