| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2006 The Android Open Source Project | 3 * Copyright 2006 The Android Open Source Project |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 #ifndef SkMatrix_DEFINED | 10 #ifndef SkMatrix_DEFINED |
| (...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 835 static void Scale_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int); | 835 static void Scale_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int); |
| 836 static void ScaleTrans_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], | 836 static void ScaleTrans_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], |
| 837 int count); | 837 int count); |
| 838 static void Persp_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int); | 838 static void Persp_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int); |
| 839 | 839 |
| 840 static void Affine_vpts(const SkMatrix&, SkPoint dst[], const SkPoint[], int
); | 840 static void Affine_vpts(const SkMatrix&, SkPoint dst[], const SkPoint[], int
); |
| 841 | 841 |
| 842 static const MapPtsProc gMapPtsProcs[]; | 842 static const MapPtsProc gMapPtsProcs[]; |
| 843 | 843 |
| 844 friend class SkPerspIter; | 844 friend class SkPerspIter; |
| 845 friend class SkMatrixPriv; |
| 845 }; | 846 }; |
| 846 SK_END_REQUIRE_DENSE | 847 SK_END_REQUIRE_DENSE |
| 847 | 848 |
| 848 #endif | 849 #endif |
| OLD | NEW |