Mercurial > MadButterfly
view include/mb_basic_types.h @ 602:ac2e6468a22a openvg
Replace mbe_image_surface_create_from_png() with mbe_pattern_create_image()
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Fri, 02 Jul 2010 13:42:22 +0800 |
parents | b42d69ab8857 |
children | 7b4e80ab671a |
line wrap: on
line source
#ifndef __MB_BASIC_TYPES_H_ #define __MB_BASIC_TYPES_H_ typedef float co_aix; typedef float co_comp_t; typedef struct _grad_stop { co_aix offset; co_comp_t r, g, b, a; } grad_stop_t; typedef struct _area { co_aix x, y; co_aix w, h; } area_t; #endif /* __MB_BASIC_TYPES_H_ */