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

Side by Side Diff: src/utils/SkInterpolator.cpp

Issue 1841123002: Reverse dependency between SkScalar.h and SkFixed.h (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 4 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 | « src/ports/SkFontMgr_android_parser.cpp ('k') | tests/FontMgrAndroidParserTest.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 * Copyright 2008 The Android Open Source Project 2 * Copyright 2008 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 8
9 #include "SkFixed.h"
9 #include "SkInterpolator.h" 10 #include "SkInterpolator.h"
10 #include "SkMath.h" 11 #include "SkMath.h"
11 #include "SkTSearch.h" 12 #include "SkTSearch.h"
12 13
13 SkInterpolatorBase::SkInterpolatorBase() { 14 SkInterpolatorBase::SkInterpolatorBase() {
14 fStorage = nullptr; 15 fStorage = nullptr;
15 fTimes = nullptr; 16 fTimes = nullptr;
16 SkDEBUGCODE(fTimesArray = nullptr;) 17 SkDEBUGCODE(fTimesArray = nullptr;)
17 } 18 }
18 19
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 } 261 }
261 262
262 // Now we have t, so compute the coeff for Y and evaluate 263 // Now we have t, so compute the coeff for Y and evaluate
263 b = pin_and_convert(by); 264 b = pin_and_convert(by);
264 c = pin_and_convert(cy); 265 c = pin_and_convert(cy);
265 A = 3*b; 266 A = 3*b;
266 B = 3*(c - 2*b); 267 B = 3*(c - 2*b);
267 C = 3*(b - c) + Dot14_ONE; 268 C = 3*(b - c) + Dot14_ONE;
268 return SkFixedToScalar(eval_cubic(t, A, B, C) << 2); 269 return SkFixedToScalar(eval_cubic(t, A, B, C) << 2);
269 } 270 }
OLDNEW
« no previous file with comments | « src/ports/SkFontMgr_android_parser.cpp ('k') | tests/FontMgrAndroidParserTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698