1 /* 2 * Copyright (C) 2006 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef SkSVGTypes_DEFINED 18 #define SkSVGTypes_DEFINED 19 20 enum SkSVGTypes { 21 SkSVGType_Circle, 22 SkSVGType_ClipPath, 23 SkSVGType_Defs, 24 SkSVGType_Ellipse, 25 SkSVGType_FeColorMatrix, 26 SkSVGType_Filter, 27 SkSVGType_G, 28 SkSVGType_Image, 29 SkSVGType_Line, 30 SkSVGType_LinearGradient, 31 SkSVGType_Mask, 32 SkSVGType_Metadata, 33 SkSVGType_Path, 34 SkSVGType_Polygon, 35 SkSVGType_Polyline, 36 SkSVGType_RadialGradient, 37 SkSVGType_Rect, 38 SkSVGType_SVG, 39 SkSVGType_Stop, 40 SkSVGType_Symbol, 41 SkSVGType_Text, 42 SkSVGType_Tspan, 43 SkSVGType_Use 44 }; 45 46 #endif // SkSVGTypes_DEFINED 47