summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-11-19 15:41:53 -0800
committerTom Sepez <tsepez@chromium.org>2015-11-19 15:41:53 -0800
commit6fc00fafcbac1fd5edd767fe2d4a8e4a9ef52806 (patch)
treeb597c58e4ae3c3667df8948a9f119118f25271c5
parentd1824ad8bc5fbbe7b040c8b69555a02a6e0e8fbe (diff)
downloadpdfium-6fc00fafcbac1fd5edd767fe2d4a8e4a9ef52806.tar.xz
Remove CFX_Matrix::Reset()
It's unused on master, and on XFA, directly calling SetIdentity() is clearer to the reader anyways. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1459243002 .
-rw-r--r--core/include/fxcrt/fx_coordinates.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/core/include/fxcrt/fx_coordinates.h b/core/include/fxcrt/fx_coordinates.h
index ddd0f572c8..e7fbe8549b 100644
--- a/core/include/fxcrt/fx_coordinates.h
+++ b/core/include/fxcrt/fx_coordinates.h
@@ -607,10 +607,7 @@ class CFX_FloatRect {
};
class CFX_Matrix {
public:
- CFX_Matrix() {
- a = d = 1;
- b = c = e = f = 0;
- }
+ CFX_Matrix() { SetIdentity(); }
CFX_Matrix(FX_FLOAT a1,
FX_FLOAT b1,
@@ -648,11 +645,8 @@ class CFX_Matrix {
FX_FLOAT e,
FX_FLOAT f,
FX_BOOL bPrepended = FALSE);
-
void Concat(const CFX_Matrix& m, FX_BOOL bPrepended = FALSE);
-
void ConcatInverse(const CFX_Matrix& m, FX_BOOL bPrepended = FALSE);
- void Reset() { SetIdentity(); }
void Copy(const CFX_Matrix& m) { *this = m; }