]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/ShivaVG/src/shArrays.h
Fix a Clang warning in Shiva.
[flightgear.git] / src / Canvas / ShivaVG / src / shArrays.h
1 /*
2  * Copyright (c) 2007 Ivan Leben
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  * 
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  * 
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library in the file COPYING;
16  * if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  */
20
21 /*--------------------------------------------
22  * Declarations of all the arrays used
23  *--------------------------------------------*/
24
25 #ifndef __SHARRAYS_H
26 #define __SHARRAYS_H
27
28 #include "shVectors.h"
29
30
31 #define _ITEM_T  SHint
32 #define _ARRAY_T SHIntArray
33 #define _FUNC_T  shIntArray
34 #define _ARRAY_DECLARE
35 #include "shArrayBase.h"
36
37 #define _ITEM_T  SHuint8
38 #define _ARRAY_T SHUint8Array
39 #define _FUNC_T  shUint8Array
40 #define _ARRAY_DECLARE
41 #include "shArrayBase.h"
42
43 #define _ITEM_T  SHfloat
44 #define _ARRAY_T SHFloatArray
45 #define _FUNC_T  shFloatArray
46 #define _ARRAY_DECLARE
47 #include "shArrayBase.h"
48
49 #define _ITEM_T  SHRectangle
50 #define _ARRAY_T SHRectArray
51 #define _FUNC_T  shRectArray
52 #define _ARRAY_DECLARE
53 #include "shArrayBase.h"
54
55 #endif