diff options
author | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-02-29 13:59:15 +0000 |
---|---|---|
committer | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-02-29 13:59:15 +0000 |
commit | 9b0da23f0af145ffd9795b4b55b9527ac050d0b0 (patch) | |
tree | 907ac9de578f466d103ba0688cb909b7727daa6a /src/core | |
parent | aefdd062717dd6182e0f87d727c807af4314d445 (diff) |
fix bug and add test for aaclip when blitV is called
git-svn-id: http://skia.googlecode.com/svn/trunk@3281 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/SkAAClip.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/SkAAClip.cpp b/src/core/SkAAClip.cpp index 9a0223d231..64c27284a4 100644 --- a/src/core/SkAAClip.cpp +++ b/src/core/SkAAClip.cpp @@ -1187,6 +1187,7 @@ public: virtual void blitV(int x, int y, int height, SkAlpha alpha) SK_OVERRIDE { this->recordMinY(y); fBuilder->addColumn(x, y, alpha, height); + fLastY = y + height - 1; } virtual void blitRect(int x, int y, int width, int height) SK_OVERRIDE { |