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

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

Issue 619563003: Archive SkFloat (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 2 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/SkFloat.cpp ('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 /* 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 #include "SkGraphics.h" 10 #include "SkGraphics.h"
11 11
12 #include "SkBlitter.h" 12 #include "SkBlitter.h"
13 #include "SkCanvas.h" 13 #include "SkCanvas.h"
14 #include "SkFloat.h"
15 #include "SkGeometry.h" 14 #include "SkGeometry.h"
16 #include "SkMath.h" 15 #include "SkMath.h"
17 #include "SkMatrix.h" 16 #include "SkMatrix.h"
18 #include "SkPath.h" 17 #include "SkPath.h"
19 #include "SkPathEffect.h" 18 #include "SkPathEffect.h"
20 #include "SkPixelRef.h" 19 #include "SkPixelRef.h"
21 #include "SkRefCnt.h" 20 #include "SkRefCnt.h"
22 #include "SkRTConf.h" 21 #include "SkRTConf.h"
23 #include "SkScalerContext.h" 22 #include "SkScalerContext.h"
24 #include "SkShader.h" 23 #include "SkShader.h"
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 if (nextEqual) { 171 if (nextEqual) {
173 val = (size_t) atoi(nextEqual + 1); 172 val = (size_t) atoi(nextEqual + 1);
174 } 173 }
175 (gFlags[i].fFunc)(val); 174 (gFlags[i].fFunc)(val);
176 break; 175 break;
177 } 176 }
178 } 177 }
179 flags = nextSemi + 1; 178 flags = nextSemi + 1;
180 } while (nextSemi); 179 } while (nextSemi);
181 } 180 }
OLDNEW
« no previous file with comments | « src/core/SkFloat.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698