Replace GrMatrix with SkMatrix.
Review URL: https://codereview.appspot.com/6814067

git-svn-id: http://skia.googlecode.com/svn/trunk@6247 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrSWMaskHelper.cpp b/src/gpu/GrSWMaskHelper.cpp
index 4a81eb1..4aad051 100644
--- a/src/gpu/GrSWMaskHelper.cpp
+++ b/src/gpu/GrSWMaskHelper.cpp
@@ -100,7 +100,7 @@
 }
 
 bool GrSWMaskHelper::init(const GrIRect& resultBounds,
-                          const GrMatrix* matrix) {
+                          const SkMatrix* matrix) {
     if (NULL != matrix) {
         fMatrix = *matrix;
     } else {
@@ -177,7 +177,7 @@
                                                  const GrIRect& resultBounds,
                                                  GrPathFill fill,
                                                  bool antiAlias,
-                                                 GrMatrix* matrix) {
+                                                 SkMatrix* matrix) {
     GrAutoScratchTexture ast;
 
     GrSWMaskHelper helper(context);