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

Side by Side Diff: src/animator/SkDisplayType.h

Issue 1273813002: Add skstd::move and skstd::forward. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: No need to change the string. Created 5 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
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 #ifndef SkDisplayType_DEFINED 10 #ifndef SkDisplayType_DEFINED
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 SkType_Join, 95 SkType_Join,
96 SkType_Line, // simple line primitive 96 SkType_Line, // simple line primitive
97 SkType_LineTo, // used as part of path construction 97 SkType_LineTo, // used as part of path construction
98 SkType_DrawLinearGradient, 98 SkType_DrawLinearGradient,
99 SkType_MaskFilter, 99 SkType_MaskFilter,
100 SkType_MaskFilterBlurStyle, 100 SkType_MaskFilterBlurStyle,
101 SkType_MaskFilterLight, 101 SkType_MaskFilterLight,
102 SkType_Matrix, 102 SkType_Matrix,
103 SkType_MemberFunction, 103 SkType_MemberFunction,
104 SkType_MemberProperty, 104 SkType_MemberProperty,
105 SkType_Move, 105 SkType_Relocate,
106 SkType_MoveTo, 106 SkType_MoveTo,
107 SkType_Movie, 107 SkType_Movie,
108 SkType_MSec, 108 SkType_MSec,
109 SkType_Oval, 109 SkType_Oval,
110 SkType_Paint, 110 SkType_Paint,
111 SkType_Path, 111 SkType_Path,
112 SkType_PathDirection, 112 SkType_PathDirection,
113 SkType_PathEffect, 113 SkType_PathEffect,
114 SkType_Point, // used inside other structures, no vtable 114 SkType_Point, // used inside other structures, no vtable
115 SkType_DrawPoint, // used to draw points, has a vtable 115 SkType_DrawPoint, // used to draw points, has a vtable
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 #if defined SK_DEBUG || defined SK_BUILD_CONDENSED 197 #if defined SK_DEBUG || defined SK_BUILD_CONDENSED
198 static void BuildCondensedInfo(SkAnimateMaker* ); 198 static void BuildCondensedInfo(SkAnimateMaker* );
199 #endif 199 #endif
200 static SkDisplayTypes GetType(SkAnimateMaker* , const char[] , size_t len); 200 static SkDisplayTypes GetType(SkAnimateMaker* , const char[] , size_t len);
201 static SkDisplayable* CreateInstance(SkAnimateMaker* , SkDisplayTypes ); 201 static SkDisplayable* CreateInstance(SkAnimateMaker* , SkDisplayTypes );
202 private: 202 private:
203 static SkDisplayTypes gNewTypes; 203 static SkDisplayTypes gNewTypes;
204 }; 204 };
205 205
206 #endif // SkDisplayType_DEFINED 206 #endif // SkDisplayType_DEFINED
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698