Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: include/core/SkMatrix.h

Issue 2268443002: add SkMatrixPriv for specialized helpers Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/core/SkMatrix.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | src/core/SkMatrix.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698