update to the agg generiastion

This commit is contained in:
Edouard DUPIN 2012-07-17 14:06:30 +02:00
parent 5d199e05c9
commit efe22dc9a4
11 changed files with 48 additions and 48 deletions

View File

@ -31,16 +31,16 @@
#include <tinyXML/tinyxml.h>
#include <parserSVG/Renderer.h>
#include <agg-2.4/agg_basics.h>
#include <agg-2.4/agg_rendering_buffer.h>
#include <agg-2.4/agg_rasterizer_scanline_aa.h>
#include <agg-2.4/agg_scanline_p.h>
#include <agg-2.4/agg_renderer_scanline.h>
#include <agg-2.4/agg_path_storage.h>
#include <agg-2.4/agg_conv_transform.h>
#include <agg-2.4/agg_bounding_rect.h>
#include <agg-2.4/agg_color_rgba.h>
#include <agg-2.4/agg_pixfmt_rgba.h>
#include <agg/agg_basics.h>
#include <agg/agg_rendering_buffer.h>
#include <agg/agg_rasterizer_scanline_aa.h>
#include <agg/agg_scanline_p.h>
#include <agg/agg_renderer_scanline.h>
#include <agg/agg_path_storage.h>
#include <agg/agg_conv_transform.h>
#include <agg/agg_bounding_rect.h>
#include <agg/agg_color_rgba.h>
#include <agg/agg_pixfmt_rgba.h>
namespace svg
{

View File

@ -24,8 +24,8 @@
#include <parserSVG/Debug.h>
#include <parserSVG/Circle.h>
#include <agg-2.4/agg_conv_stroke.h>
#include <agg-2.4/agg_ellipse.h>
#include <agg/agg_conv_stroke.h>
#include <agg/agg_ellipse.h>
svg::Circle::Circle(PaintState parentPaintState) : svg::Base(parentPaintState)

View File

@ -24,8 +24,8 @@
#include <parserSVG/Debug.h>
#include <parserSVG/Ellipse.h>
#include <agg-2.4/agg_conv_stroke.h>
#include <agg-2.4/agg_ellipse.h>
#include <agg/agg_conv_stroke.h>
#include <agg/agg_ellipse.h>
svg::Ellipse::Ellipse(PaintState parentPaintState) : svg::Base(parentPaintState)
{

View File

@ -24,8 +24,8 @@
#include <parserSVG/Debug.h>
#include <parserSVG/Line.h>
#include <agg-2.4/agg_conv_stroke.h>
#include <agg-2.4/agg_path_storage.h>
#include <agg/agg_conv_stroke.h>
#include <agg/agg_path_storage.h>
svg::Line::Line(PaintState parentPaintState) : svg::Base(parentPaintState)
{

View File

@ -24,11 +24,11 @@
#include <parserSVG/Debug.h>
#include <parserSVG/Path.h>
#include <agg-2.4/agg_conv_stroke.h>
#include <agg-2.4/agg_conv_dash.h>
#include <agg-2.4/agg_conv_curve.h>
#include <agg-2.4/agg_conv_contour.h>
#include <agg-2.4/agg_conv_smooth_poly1.h>
#include <agg/agg_conv_stroke.h>
#include <agg/agg_conv_dash.h>
#include <agg/agg_conv_curve.h>
#include <agg/agg_conv_contour.h>
#include <agg/agg_conv_smooth_poly1.h>
svg::Path::Path(PaintState parentPaintState) : svg::Base(parentPaintState)
{

View File

@ -26,7 +26,7 @@
#define __SVG_PATH_H__
#include <parserSVG/Base.h>
#include <agg-2.4/agg_path_storage.h>
#include <agg/agg_path_storage.h>
namespace svg
{

View File

@ -24,8 +24,8 @@
#include <parserSVG/Debug.h>
#include <parserSVG/Polygon.h>
#include <agg-2.4/agg_conv_stroke.h>
#include <agg-2.4/agg_path_storage.h>
#include <agg/agg_conv_stroke.h>
#include <agg/agg_path_storage.h>
svg::Polygon::Polygon(PaintState parentPaintState) : svg::Base(parentPaintState)
{

View File

@ -24,8 +24,8 @@
#include <parserSVG/Debug.h>
#include <parserSVG/Polyline.h>
#include <agg-2.4/agg_conv_stroke.h>
#include <agg-2.4/agg_path_storage.h>
#include <agg/agg_conv_stroke.h>
#include <agg/agg_path_storage.h>
svg::Polyline::Polyline(PaintState parentPaintState) : svg::Base(parentPaintState)
{

View File

@ -24,8 +24,8 @@
#include <parserSVG/Debug.h>
#include <parserSVG/Rectangle.h>
#include <agg-2.4/agg_rounded_rect.h>
#include <agg-2.4/agg_conv_stroke.h>
#include <agg/agg_rounded_rect.h>
#include <agg/agg_conv_stroke.h>
svg::Rectangle::Rectangle(PaintState parentPaintState) : svg::Base(parentPaintState)
{

View File

@ -27,16 +27,16 @@
#include <etk/UString.h>
#include <agg-2.4/agg_basics.h>
#include <agg-2.4/agg_rendering_buffer.h>
#include <agg-2.4/agg_rasterizer_scanline_aa.h>
#include <agg-2.4/agg_scanline_p.h>
#include <agg-2.4/agg_renderer_scanline.h>
#include <agg-2.4/agg_path_storage.h>
#include <agg-2.4/agg_conv_transform.h>
#include <agg-2.4/agg_bounding_rect.h>
#include <agg-2.4/agg_color_rgba.h>
#include <agg-2.4/agg_pixfmt_rgba.h>
#include <agg/agg_basics.h>
#include <agg/agg_rendering_buffer.h>
#include <agg/agg_rasterizer_scanline_aa.h>
#include <agg/agg_scanline_p.h>
#include <agg/agg_renderer_scanline.h>
#include <agg/agg_path_storage.h>
#include <agg/agg_conv_transform.h>
#include <agg/agg_bounding_rect.h>
#include <agg/agg_color_rgba.h>
#include <agg/agg_pixfmt_rgba.h>
namespace svg
{

View File

@ -36,16 +36,16 @@
#include <parserSVG/Text.h>
#include <parserSVG/Group.h>
#include <agg-2.4/agg_basics.h>
#include <agg-2.4/agg_rendering_buffer.h>
#include <agg-2.4/agg_rasterizer_scanline_aa.h>
#include <agg-2.4/agg_scanline_p.h>
#include <agg-2.4/agg_renderer_scanline.h>
#include <agg-2.4/agg_path_storage.h>
#include <agg-2.4/agg_conv_transform.h>
#include <agg-2.4/agg_bounding_rect.h>
#include <agg-2.4/agg_color_rgba.h>
#include <agg-2.4/agg_pixfmt_rgba.h>
#include <agg/agg_basics.h>
#include <agg/agg_rendering_buffer.h>
#include <agg/agg_rasterizer_scanline_aa.h>
#include <agg/agg_scanline_p.h>
#include <agg/agg_renderer_scanline.h>
#include <agg/agg_path_storage.h>
#include <agg/agg_conv_transform.h>
#include <agg/agg_bounding_rect.h>
#include <agg/agg_color_rgba.h>
#include <agg/agg_pixfmt_rgba.h>
svg::Parser::Parser(etk::File fileName) : m_renderedElement(NULL)
{