blob: b2a49c19c07e4cb17fd9b0b04b6201420dba878a [file] [log] [blame]
reed@android.com8a1c16f2008-12-17 15:59:43 +00001/* libs/graphics/animator/SkIntArray.h
2**
3** Copyright 2006, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18#ifndef SkIntArray_DEFINED
19#define SkIntArray_DEFINED
20
21#include "SkColor.h"
22#include "SkDisplayType.h"
23#include "SkMath.h"
24#include "SkTDArray_Experimental.h"
25
26class SkActive;
27class SkAnimateBase;
28class SkData;
29class SkDisplayable;
30class SkDisplayEvent;
31class SkDrawable;
32class SkDrawColor;
33class SkMatrixPart;
34struct SkMemberInfo;
35class SkPathPart;
36class SkPaintPart;
37class SkTypedArray;
38class SkString;
39union SkOperand;
40
41typedef SkIntArray(int) SkTDIntArray;
42typedef SkIntArray(SkColor) SkTDColorArray;
43typedef SkIntArray(SkDisplayTypes) SkTDDisplayTypesArray;
44typedef SkIntArray(SkMSec) SkTDMSecArray;
45typedef SkIntArray(SkScalar) SkTDScalarArray;
46
47typedef SkLongArray(SkActive*) SkTDActiveArray;
48typedef SkLongArray(SkAnimateBase*) SkTDAnimateArray;
49typedef SkLongArray(SkData*) SkTDDataArray;
50typedef SkLongArray(SkDisplayable*) SkTDDisplayableArray;
51typedef SkLongArray(SkDisplayEvent*) SkTDDisplayEventArray;
52typedef SkLongArray(SkDrawable*) SkTDDrawableArray;
53typedef SkLongArray(SkDrawColor*) SkTDDrawColorArray;
54typedef SkLongArray(SkMatrixPart*) SkTDMatrixPartArray;
55typedef SkLongArray(const SkMemberInfo*) SkTDMemberInfoArray;
56typedef SkLongArray(SkPaintPart*) SkTDPaintPartArray;
57typedef SkLongArray(SkPathPart*) SkTDPathPartArray;
58typedef SkLongArray(SkTypedArray*) SkTDTypedArrayArray;
59typedef SkLongArray(SkString*) SkTDStringArray;
60typedef SkLongArray(SkOperand) SkTDOperandArray;
61typedef SkLongArray(SkOperand*) SkTDOperandPtrArray;
62
63#endif // SkIntArray_DEFINED
64
65
66