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

Side by Side Diff: src/core/SkBitmapProcState_matrix_template.h

Issue 1666433003: Rename SkBitmapProcStateAutoMapper methods (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: neon build fix Created 4 years, 10 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 | « src/core/SkBitmapProcState_matrixProcs.cpp ('k') | src/core/SkBitmapProcState_shaderproc.h » ('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 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkBitmapProcState_MatrixTemplates_DEFINED 8 #ifndef SkBitmapProcState_MatrixTemplates_DEFINED
9 #define SkBitmapProcState_MatrixTemplates_DEFINED 9 #define SkBitmapProcState_MatrixTemplates_DEFINED
10 10
11 #include "SkMath.h" 11 #include "SkMath.h"
12 #include "SkMathPriv.h" 12 #include "SkMathPriv.h"
13 13
14 template <typename TileProc, bool tryDecal> 14 template <typename TileProc, bool tryDecal>
15 void NoFilterProc_Scale(const SkBitmapProcState& s, uint32_t xy[], 15 void NoFilterProc_Scale(const SkBitmapProcState& s, uint32_t xy[],
16 int count, int x, int y) { 16 int count, int x, int y) {
17 SkASSERT((s.fInvType & ~(SkMatrix::kTranslate_Mask | 17 SkASSERT((s.fInvType & ~(SkMatrix::kTranslate_Mask |
18 SkMatrix::kScale_Mask)) == 0); 18 SkMatrix::kScale_Mask)) == 0);
19 19
20 // we store y, x, x, x, x, x 20 // we store y, x, x, x, x, x
21 21
22 const unsigned maxX = s.fPixmap.width() - 1; 22 const unsigned maxX = s.fPixmap.width() - 1;
23 SkFractionalInt fx; 23 SkFractionalInt fx;
24 { 24 {
25 const SkBitmapProcStateAutoMapper mapper(s, x, y); 25 const SkBitmapProcStateAutoMapper mapper(s, x, y);
26 const unsigned maxY = s.fPixmap.height() - 1; 26 const unsigned maxY = s.fPixmap.height() - 1;
27 *xy++ = TileProc::Y(s, SkFractionalIntToFixed(mapper.y()), maxY); 27 *xy++ = TileProc::Y(s, mapper.fixedY(), maxY);
28 fx = mapper.x(); 28 fx = mapper.fractionalIntX();
29 } 29 }
30 30
31 if (0 == maxX) { 31 if (0 == maxX) {
32 // all of the following X values must be 0 32 // all of the following X values must be 0
33 memset(xy, 0, count * sizeof(uint16_t)); 33 memset(xy, 0, count * sizeof(uint16_t));
34 return; 34 return;
35 } 35 }
36 36
37 const SkFractionalInt dx = s.fInvSxFractionalInt; 37 const SkFractionalInt dx = s.fInvSxFractionalInt;
38 38
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 template <typename TileProc> 72 template <typename TileProc>
73 void NoFilterProc_Affine(const SkBitmapProcState& s, uint32_t xy[], 73 void NoFilterProc_Affine(const SkBitmapProcState& s, uint32_t xy[],
74 int count, int x, int y) { 74 int count, int x, int y) {
75 SkASSERT(s.fInvType & SkMatrix::kAffine_Mask); 75 SkASSERT(s.fInvType & SkMatrix::kAffine_Mask);
76 SkASSERT((s.fInvType & ~(SkMatrix::kTranslate_Mask | 76 SkASSERT((s.fInvType & ~(SkMatrix::kTranslate_Mask |
77 SkMatrix::kScale_Mask | 77 SkMatrix::kScale_Mask |
78 SkMatrix::kAffine_Mask)) == 0); 78 SkMatrix::kAffine_Mask)) == 0);
79 79
80 const SkBitmapProcStateAutoMapper mapper(s, x, y); 80 const SkBitmapProcStateAutoMapper mapper(s, x, y);
81 81
82 SkFractionalInt fx = mapper.x(); 82 SkFractionalInt fx = mapper.fractionalIntX();
83 SkFractionalInt fy = mapper.y(); 83 SkFractionalInt fy = mapper.fractionalIntY();
84 SkFractionalInt dx = s.fInvSxFractionalInt; 84 SkFractionalInt dx = s.fInvSxFractionalInt;
85 SkFractionalInt dy = s.fInvKyFractionalInt; 85 SkFractionalInt dy = s.fInvKyFractionalInt;
86 int maxX = s.fPixmap.width() - 1; 86 int maxX = s.fPixmap.width() - 1;
87 int maxY = s.fPixmap.height() - 1; 87 int maxY = s.fPixmap.height() - 1;
88 88
89 for (int i = count; i > 0; --i) { 89 for (int i = count; i > 0; --i) {
90 *xy++ = (TileProc::Y(s, SkFractionalIntToFixed(fy), maxY) << 16) | 90 *xy++ = (TileProc::Y(s, SkFractionalIntToFixed(fy), maxY) << 16) |
91 TileProc::X(s, SkFractionalIntToFixed(fx), maxX); 91 TileProc::X(s, SkFractionalIntToFixed(fx), maxX);
92 fx += dx; fy += dy; 92 fx += dx; fy += dy;
93 } 93 }
(...skipping 15 matching lines...) Expand all
109 const SkFixed* SK_RESTRICT srcXY = iter.getXY(); 109 const SkFixed* SK_RESTRICT srcXY = iter.getXY();
110 while (--count >= 0) { 110 while (--count >= 0) {
111 *xy++ = (TileProc::Y(s, srcXY[1], maxY) << 16) | 111 *xy++ = (TileProc::Y(s, srcXY[1], maxY) << 16) |
112 TileProc::X(s, srcXY[0], maxX); 112 TileProc::X(s, srcXY[0], maxX);
113 srcXY += 2; 113 srcXY += 2;
114 } 114 }
115 } 115 }
116 } 116 }
117 117
118 #endif 118 #endif
OLDNEW
« no previous file with comments | « src/core/SkBitmapProcState_matrixProcs.cpp ('k') | src/core/SkBitmapProcState_shaderproc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698