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

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

Issue 1071833002: Remove SK_SUPPORT_LEGACY_SCALAR_MAPPOINTS (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Created 5 years, 8 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 779 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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