/* typedefs.h -- John Hunter * * $Header$ * $Log$ * Revision 1.2 2005/06/23 22:25:10 jdh2358 * some work on agg swig wrapper * * Revision 1.1 2005/05/12 19:16:35 jdh2358 * cleaned up agg wrapper * */ #ifndef _TYPEDEFS_H #define _TYPEDEFS_H //#include "agg_span_interpolator_linear.h" //#include "agg_span_image_filter_rgba.h" typedef agg::path_storage path_t; typedef agg::conv_stroke stroke_t; typedef agg::conv_transform transpath_t; typedef agg::conv_stroke stroketrans_t; typedef agg::conv_curve curve_t; typedef agg::conv_stroke strokecurve_t; typedef agg::conv_transform transcurve_t; typedef agg::conv_stroke stroketranscurve_t; typedef agg::conv_curve curvetrans_t; typedef agg::conv_stroke strokecurvetrans_t; typedef agg::pixel_formats_rgba pixfmt_rgba_t; typedef agg::renderer_base renderer_base_rgba_t; //typedef agg::span_interpolator_linear interpolator_linear_t; //typedef agg::span_image_filter_rgba_nn span_imfilt_rgba_nn_interplinear_t; #endif