aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/utils/SkMatrix44.h
diff options
context:
space:
mode:
authorGravatar vollick@chromium.org <vollick@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-11-13 15:08:22 +0000
committerGravatar vollick@chromium.org <vollick@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-11-13 15:08:22 +0000
commit3959a76ab086a4adbdb9d48977fa276ce0213cb1 (patch)
tree807dae9f99efbb9ed854151df1823e961bf1e22c /include/utils/SkMatrix44.h
parent30c174b9ce6b9777ee50ae0d0565a01b2a060f01 (diff)
Changing the visibility of SkMatrix44::determinant().
Review URL: https://codereview.appspot.com/6819080 git-svn-id: http://skia.googlecode.com/svn/trunk@6395 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/utils/SkMatrix44.h')
-rw-r--r--include/utils/SkMatrix44.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/utils/SkMatrix44.h b/include/utils/SkMatrix44.h
index cff0d04a3d..8c6d0350dd 100644
--- a/include/utils/SkMatrix44.h
+++ b/include/utils/SkMatrix44.h
@@ -219,6 +219,8 @@ public:
void dump() const;
+ double determinant() const;
+
private:
/* Stored in the same order as opengl:
[3][0] = tx
@@ -226,8 +228,6 @@ private:
[3][2] = tz
*/
SkMScalar fMat[4][4];
-
- double determinant() const;
};
#endif