| 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 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 790 static void RotTrans_xy(const SkMatrix&, SkScalar, SkScalar, SkPoint*); | 790 static void RotTrans_xy(const SkMatrix&, SkScalar, SkScalar, SkPoint*); |
| 791 static void Persp_xy(const SkMatrix&, SkScalar, SkScalar, SkPoint*); | 791 static void Persp_xy(const SkMatrix&, SkScalar, SkScalar, SkPoint*); |
| 792 | 792 |
| 793 static const MapXYProc gMapXYProcs[]; | 793 static const MapXYProc gMapXYProcs[]; |
| 794 | 794 |
| 795 static void Identity_pts(const SkMatrix&, SkPoint[], const SkPoint[], int); | 795 static void Identity_pts(const SkMatrix&, SkPoint[], const SkPoint[], int); |
| 796 static void Trans_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int); | 796 static void Trans_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int); |
| 797 static void Scale_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int); | 797 static void Scale_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int); |
| 798 static void ScaleTrans_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], | 798 static void ScaleTrans_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], |
| 799 int count); | 799 int count); |
| 800 static void Rot_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int); | |
| 801 static void RotTrans_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], | |
| 802 int count); | |
| 803 static void Persp_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int); | 800 static void Persp_pts(const SkMatrix&, SkPoint dst[], const SkPoint[], int); |
| 804 | 801 |
| 805 static void Affine_vpts(const SkMatrix&, SkPoint dst[], const SkPoint[], int
); | 802 static void Affine_vpts(const SkMatrix&, SkPoint dst[], const SkPoint[], int
); |
| 806 | 803 |
| 807 static const MapPtsProc gMapPtsProcs[]; | 804 static const MapPtsProc gMapPtsProcs[]; |
| 808 | 805 |
| 809 friend class SkPerspIter; | 806 friend class SkPerspIter; |
| 810 }; | 807 }; |
| 811 | 808 |
| 812 #endif | 809 #endif |
| OLD | NEW |