diff options
author | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-05-23 21:09:13 +0000 |
---|---|---|
committer | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-05-23 21:09:13 +0000 |
commit | eb5a8151a5c7bdd426ac10b965ab844891890367 (patch) | |
tree | e53902c94f9e4e205c63893ab170d5c8d525dc14 /src/pipe | |
parent | 80b09de87fadfa1fe45860124b157a01e03f760b (diff) |
call notify after we write the kDone verb
git-svn-id: http://skia.googlecode.com/svn/trunk@1401 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/pipe')
-rw-r--r-- | src/pipe/SkGPipeWrite.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pipe/SkGPipeWrite.cpp b/src/pipe/SkGPipeWrite.cpp index 5e8ba3dd2a..428f864fe9 100644 --- a/src/pipe/SkGPipeWrite.cpp +++ b/src/pipe/SkGPipeWrite.cpp @@ -83,6 +83,7 @@ public: void finish() { if (!fDone) { this->writeOp(kDone_DrawOp); + this->doNotify(); fDone = true; } } |