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

Side by Side Diff: src/animator/SkTextOnPath.cpp

Issue 1316233002: Style Change: NULL->nullptr (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-27 (Thursday) 10:25:06 EDT Created 5 years, 3 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/animator/SkTDArray_Experimental.h ('k') | src/animator/SkTextToPath.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 #include "SkTextOnPath.h" 10 #include "SkTextOnPath.h"
11 #include "SkAnimateMaker.h" 11 #include "SkAnimateMaker.h"
12 #include "SkCanvas.h" 12 #include "SkCanvas.h"
13 #include "SkDrawPath.h" 13 #include "SkDrawPath.h"
14 #include "SkDrawText.h" 14 #include "SkDrawText.h"
15 #include "SkPaint.h" 15 #include "SkPaint.h"
16 16
17 #if SK_USE_CONDENSED_INFO == 0 17 #if SK_USE_CONDENSED_INFO == 0
18 18
19 const SkMemberInfo SkTextOnPath::fInfo[] = { 19 const SkMemberInfo SkTextOnPath::fInfo[] = {
20 SK_MEMBER(offset, Float), 20 SK_MEMBER(offset, Float),
21 SK_MEMBER(path, Path), 21 SK_MEMBER(path, Path),
22 SK_MEMBER(text, Text) 22 SK_MEMBER(text, Text)
23 }; 23 };
24 24
25 #endif 25 #endif
26 26
27 DEFINE_GET_MEMBER(SkTextOnPath); 27 DEFINE_GET_MEMBER(SkTextOnPath);
28 28
29 SkTextOnPath::SkTextOnPath() : offset(0), path(NULL), text(NULL) { 29 SkTextOnPath::SkTextOnPath() : offset(0), path(nullptr), text(nullptr) {
30 } 30 }
31 31
32 bool SkTextOnPath::draw(SkAnimateMaker& maker) { 32 bool SkTextOnPath::draw(SkAnimateMaker& maker) {
33 SkASSERT(text); 33 SkASSERT(text);
34 SkASSERT(path); 34 SkASSERT(path);
35 SkBoundableAuto boundable(this, maker); 35 SkBoundableAuto boundable(this, maker);
36 maker.fCanvas->drawTextOnPathHV(text->getText(), text->getSize(), 36 maker.fCanvas->drawTextOnPathHV(text->getText(), text->getSize(),
37 path->getPath(), offset, 0, *maker.fPaint); 37 path->getPath(), offset, 0, *maker.fPaint);
38 return false; 38 return false;
39 } 39 }
OLDNEW
« no previous file with comments | « src/animator/SkTDArray_Experimental.h ('k') | src/animator/SkTextToPath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698