1 #ifndef __TIGER_H
2 #define __TIGER_H
3 
4 /*------------------------------------------------------------------------
5  *
6  * OpenVG 1.0.1 Reference Implementation sample code
7  * -------------------------------------------------
8  *
9  * Copyright (c) 2007 The Khronos Group Inc.
10  *
11  * Permission is hereby granted, free of charge, to any person obtaining a
12  * copy of this software and /or associated documentation files
13  * (the "Materials "), to deal in the Materials without restriction,
14  * including without limitation the rights to use, copy, modify, merge,
15  * publish, distribute, sublicense, and/or sell copies of the Materials,
16  * and to permit persons to whom the Materials are furnished to do so,
17  * subject to the following conditions:
18  *
19  * The above copyright notice and this permission notice shall be included
20  * in all copies or substantial portions of the Materials.
21  *
22  * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
25  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
26  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
27  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR
28  * THE USE OR OTHER DEALINGS IN THE MATERIALS.
29  *
30  *//**
31  * \file
32  * \brief	Header for including the Tiger image data.
33  * \note
34  *//*-------------------------------------------------------------------*/
35 
36 extern const int tigerCommandCount;
37 extern const char tigerCommands[];
38 extern const float tigerMinX;
39 extern const float tigerMaxX;
40 extern const float tigerMinY;
41 extern const float tigerMaxY;
42 extern const int tigerPointCount;
43 extern const float tigerPoints[];
44 
45 #endif /* __TIGER_H */
46