Mercurial > MadButterfly
comparison include/mb_basic_types.h @ 1098:cb4a2ffdf9e8
Merge HEAD
author | wycc |
---|---|
date | Sat, 04 Dec 2010 16:58:25 +0800 |
parents | d09f603438d8 |
children |
comparison
equal
deleted
inserted
replaced
1097:52d8bf5d12b4 | 1098:cb4a2ffdf9e8 |
---|---|
8 typedef struct _grad_stop { | 8 typedef struct _grad_stop { |
9 co_aix offset; | 9 co_aix offset; |
10 co_comp_t r, g, b, a; | 10 co_comp_t r, g, b, a; |
11 } grad_stop_t; | 11 } grad_stop_t; |
12 | 12 |
13 /*! \brief An rectangle area. | |
14 * | |
15 * This type is used to describe an rectangle area in an image or on a | |
16 * screen. | |
17 */ | |
18 struct _area { | |
19 co_aix x, y; | |
20 co_aix w, h; | |
21 }; | |
22 typedef struct _area area_t; | |
23 | |
13 #endif /* __MB_BASIC_TYPES_H_ */ | 24 #endif /* __MB_BASIC_TYPES_H_ */ |