blob: b0706405ac55c7eb5df39c208cd2aba7c4c8da1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Copyright 2006 The Android Open Source Project
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkAnimateProperties_DEFINED
#define SkAnimateProperties_DEFINED
enum SkAnimateBase_Properties {
SK_PROPERTY(dynamic),
SK_PROPERTY(mirror),
SK_PROPERTY(reset),
SK_PROPERTY(step),
SK_PROPERTY(values)
};
#endif // SkAnimateProperties_DEFINED
|