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

Side by Side Diff: src/core/SkMatrix.cpp

Issue 22330004: Add a map homogenous points to SkMatrix (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « include/core/SkMatrix.h ('k') | no next file » | 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 2006 The Android Open Source Project 2 * Copyright 2006 The Android Open Source Project
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 #include "SkMatrix.h" 8 #include "SkMatrix.h"
9 #include "Sk64.h" 9 #include "Sk64.h"
10 #include "SkFloatBits.h" 10 #include "SkFloatBits.h"
(...skipping 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after
1220 void SkMatrix::mapPoints(SkPoint dst[], const SkPoint src[], int count) const { 1220 void SkMatrix::mapPoints(SkPoint dst[], const SkPoint src[], int count) const {
1221 SkASSERT((dst && src && count > 0) || count == 0); 1221 SkASSERT((dst && src && count > 0) || count == 0);
1222 // no partial overlap 1222 // no partial overlap
1223 SkASSERT(src == dst || SkAbs32((int32_t)(src - dst)) >= count); 1223 SkASSERT(src == dst || SkAbs32((int32_t)(src - dst)) >= count);
1224 1224
1225 this->getMapPtsProc()(*this, dst, src, count); 1225 this->getMapPtsProc()(*this, dst, src, count);
1226 } 1226 }
1227 1227
1228 /////////////////////////////////////////////////////////////////////////////// 1228 ///////////////////////////////////////////////////////////////////////////////
1229 1229
1230 void SkMatrix::Homogenous_pts(const SkMatrix& m, SkScalar dst[],
1231 const SkScalar src[], int count) {
1232
1233 if (count > 0) {
1234 do {
1235 SkScalar sx = src[0];
1236 SkScalar sy = src[1];
1237 SkScalar sz = src[2];
bsalomon 2013/08/07 17:54:01 Can we call this sw?
1238 src += 3;
1239
1240 SkScalar x = SkScalarMul(sx, m.fMat[kMScaleX]) +
1241 SkScalarMul(sy, m.fMat[kMSkewX]) +
1242 SkScalarMul(sz, m.fMat[kMTransX]);
1243 SkScalar y = SkScalarMul(sx, m.fMat[kMSkewY]) +
1244 SkScalarMul(sy, m.fMat[kMScaleY]) +
1245 SkScalarMul(sz, m.fMat[kMTransY]);
1246 SkScalar z = SkScalarMul(sx, m.fMat[kMPersp0]) +
bsalomon 2013/08/07 17:54:01 w?
1247 SkScalarMul(sy, m.fMat[kMPersp1]) +
1248 SkScalarMul(sz, m.fMat[kMPersp2]);
1249
1250 dst[0] = x;
1251 dst[1] = y;
1252 dst[2] = z;
1253 dst += 3;
1254 } while (--count);
1255 }
1256 }
1257
1258 void SkMatrix::mapHomogenousPoints(SkScalar dst[], const SkScalar src[], int cou nt) const {
1259 SkASSERT((dst && src && count > 0) || count == 0);
1260 // no partial overlap
1261 SkASSERT(src == dst || SkAbs32((int32_t)(src - dst)) >= 3*count);
1262
1263 SkMatrix::Homogenous_pts(*this, dst, src, count);
1264 }
1265
1266 ///////////////////////////////////////////////////////////////////////////////
1267
1230 void SkMatrix::mapVectors(SkPoint dst[], const SkPoint src[], int count) const { 1268 void SkMatrix::mapVectors(SkPoint dst[], const SkPoint src[], int count) const {
1231 if (this->hasPerspective()) { 1269 if (this->hasPerspective()) {
1232 SkPoint origin; 1270 SkPoint origin;
1233 1271
1234 MapXYProc proc = this->getMapXYProc(); 1272 MapXYProc proc = this->getMapXYProc();
1235 proc(*this, 0, 0, &origin); 1273 proc(*this, 0, 0, &origin);
1236 1274
1237 for (int i = count - 1; i >= 0; --i) { 1275 for (int i = count - 1; i >= 0; --i) {
1238 SkPoint tmp; 1276 SkPoint tmp;
1239 1277
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after
2048 } 2086 }
2049 if (NULL != rotation0) { 2087 if (NULL != rotation0) {
2050 *rotation0 = r0; 2088 *rotation0 = r0;
2051 } 2089 }
2052 if (NULL != rotation1) { 2090 if (NULL != rotation1) {
2053 *rotation1 = r1; 2091 *rotation1 = r1;
2054 } 2092 }
2055 2093
2056 return true; 2094 return true;
2057 } 2095 }
OLDNEW
« no previous file with comments | « include/core/SkMatrix.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698