| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |