aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-10-08 20:44:25 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-10-08 20:44:25 +0000
commit0e354aacd84d3bede3f97cbde35a54ba62a89533 (patch)
tree8ca5215852c9b98026695bef8eeeed5b039eb466 /include/core
parenta834746cc1bd92301fd0840a221ca1623c0bbb29 (diff)
Remove external matrix feature.
We haven't been testing this for nearly two years. R=reed@google.com Review URL: https://codereview.appspot.com/6640044 git-svn-id: http://skia.googlecode.com/svn/trunk@5857 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core')
-rw-r--r--include/core/SkCanvas.h5
-rw-r--r--include/core/SkDraw.h3
2 files changed, 0 insertions, 8 deletions
diff --git a/include/core/SkCanvas.h b/include/core/SkCanvas.h
index 45db96f045..0868574525 100644
--- a/include/core/SkCanvas.h
+++ b/include/core/SkCanvas.h
@@ -893,8 +893,6 @@ public:
return &fClipStack;
}
- void setExternalMatrix(const SkMatrix* = NULL);
-
class ClipVisitor {
public:
virtual ~ClipVisitor();
@@ -1042,9 +1040,6 @@ private:
}
void computeLocalClipBoundsCompareType() const;
- SkMatrix fExternalMatrix, fExternalInverse;
- bool fUseExternalMatrix;
-
class AutoValidateClip : ::SkNoncopyable {
public:
explicit AutoValidateClip(SkCanvas* canvas) : fCanvas(canvas) {
diff --git a/include/core/SkDraw.h b/include/core/SkDraw.h
index b31f4f5a17..5db4bf0eb1 100644
--- a/include/core/SkDraw.h
+++ b/include/core/SkDraw.h
@@ -115,9 +115,6 @@ public:
SkBounder* fBounder; // optional
SkDrawProcs* fProcs; // optional
- const SkMatrix* fMVMatrix; // optional
- const SkMatrix* fExtMatrix; // optional
-
#ifdef SK_DEBUG
void validate() const;
#else