aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/effects
diff options
context:
space:
mode:
authorGravatar mike@reedtribe.org <mike@reedtribe.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-04-14 19:06:16 +0000
committerGravatar mike@reedtribe.org <mike@reedtribe.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-04-14 19:06:16 +0000
commit90bf427001fd4f6d9fcee88911deb015aeb4ab7c (patch)
tree109f3ff22dd5d23a7a7fbe8e2afc4e5d26bf5c92 /include/effects
parent6093e6582970364241a10d62b05efee50606c5e8 (diff)
proper handling if SkMatrix::invert failes, addresses hack fix in rev. 3657
git-svn-id: http://skia.googlecode.com/svn/trunk@3679 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/effects')
-rw-r--r--include/effects/Sk2DPathEffect.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/effects/Sk2DPathEffect.h b/include/effects/Sk2DPathEffect.h
index 67e78579e3..30bbe1ab16 100644
--- a/include/effects/Sk2DPathEffect.h
+++ b/include/effects/Sk2DPathEffect.h
@@ -48,6 +48,8 @@ protected:
private:
SkMatrix fMatrix, fInverse;
+ bool fMatrixIsInvertible;
+
// illegal
Sk2DPathEffect(const Sk2DPathEffect&);
Sk2DPathEffect& operator=(const Sk2DPathEffect&);