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

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

Issue 1316123003: Style Change: SkNEW->new; SkDELETE->delete (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-26 (Wednesday) 15:59:00 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/SkAnimateActive.cpp ('k') | src/animator/SkAnimator.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 "SkAnimateSet.h" 10 #include "SkAnimateSet.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 return; 60 return;
61 } 61 }
62 fReset = dur != 1; 62 fReset = dur != 1;
63 SkDisplayTypes outType = fFieldInfo->getType(); 63 SkDisplayTypes outType = fFieldInfo->getType();
64 int comps = outType == SkType_String || outType == SkType_DynamicString ? 1 : 64 int comps = outType == SkType_String || outType == SkType_DynamicString ? 1 :
65 (int)fFieldInfo->getSize((const SkDisplayable*) fTarget) / sizeof(int); 65 (int)fFieldInfo->getSize((const SkDisplayable*) fTarget) / sizeof(int);
66 if (fValues.getType() == SkType_Unknown) { 66 if (fValues.getType() == SkType_Unknown) {
67 fValues.setType(outType); 67 fValues.setType(outType);
68 fValues.setCount(comps); 68 fValues.setCount(comps);
69 if (outType == SkType_String || outType == SkType_DynamicString) 69 if (outType == SkType_String || outType == SkType_DynamicString)
70 fValues[0].fString = SkNEW(SkString); 70 fValues[0].fString = new SkString;
71 else 71 else
72 memset(fValues.begin(), 0, fValues.count() * sizeof(fValues.begin()[ 0])); 72 memset(fValues.begin(), 0, fValues.count() * sizeof(fValues.begin()[ 0]));
73 } else { 73 } else {
74 SkASSERT(fValues.getType() == outType); 74 SkASSERT(fValues.getType() == outType);
75 if (fFieldInfo->fType == SkType_Array) 75 if (fFieldInfo->fType == SkType_Array)
76 comps = fValues.count(); 76 comps = fValues.count();
77 else { 77 else {
78 SkASSERT(fValues.count() == comps); 78 SkASSERT(fValues.count() == comps);
79 } 79 }
80 } 80 }
81 if (formula.size() > 0) { 81 if (formula.size() > 0) {
82 comps = 1; 82 comps = 1;
83 outType = SkType_MSec; 83 outType = SkType_MSec;
84 } 84 }
85 fFieldInfo->setValue(maker, &fValues, fFieldOffset, comps, this, outType, fo rmula.size() > 0 ? formula : to); 85 fFieldInfo->setValue(maker, &fValues, fFieldOffset, comps, this, outType, fo rmula.size() > 0 ? formula : to);
86 fComponents = fValues.count(); 86 fComponents = fValues.count();
87 } 87 }
OLDNEW
« no previous file with comments | « src/animator/SkAnimateActive.cpp ('k') | src/animator/SkAnimator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698