update to the agg generiastion
This commit is contained in:
parent
5d199e05c9
commit
efe22dc9a4
@ -31,16 +31,16 @@
|
|||||||
#include <tinyXML/tinyxml.h>
|
#include <tinyXML/tinyxml.h>
|
||||||
#include <parserSVG/Renderer.h>
|
#include <parserSVG/Renderer.h>
|
||||||
|
|
||||||
#include <agg-2.4/agg_basics.h>
|
#include <agg/agg_basics.h>
|
||||||
#include <agg-2.4/agg_rendering_buffer.h>
|
#include <agg/agg_rendering_buffer.h>
|
||||||
#include <agg-2.4/agg_rasterizer_scanline_aa.h>
|
#include <agg/agg_rasterizer_scanline_aa.h>
|
||||||
#include <agg-2.4/agg_scanline_p.h>
|
#include <agg/agg_scanline_p.h>
|
||||||
#include <agg-2.4/agg_renderer_scanline.h>
|
#include <agg/agg_renderer_scanline.h>
|
||||||
#include <agg-2.4/agg_path_storage.h>
|
#include <agg/agg_path_storage.h>
|
||||||
#include <agg-2.4/agg_conv_transform.h>
|
#include <agg/agg_conv_transform.h>
|
||||||
#include <agg-2.4/agg_bounding_rect.h>
|
#include <agg/agg_bounding_rect.h>
|
||||||
#include <agg-2.4/agg_color_rgba.h>
|
#include <agg/agg_color_rgba.h>
|
||||||
#include <agg-2.4/agg_pixfmt_rgba.h>
|
#include <agg/agg_pixfmt_rgba.h>
|
||||||
|
|
||||||
namespace svg
|
namespace svg
|
||||||
{
|
{
|
||||||
|
@ -24,8 +24,8 @@
|
|||||||
|
|
||||||
#include <parserSVG/Debug.h>
|
#include <parserSVG/Debug.h>
|
||||||
#include <parserSVG/Circle.h>
|
#include <parserSVG/Circle.h>
|
||||||
#include <agg-2.4/agg_conv_stroke.h>
|
#include <agg/agg_conv_stroke.h>
|
||||||
#include <agg-2.4/agg_ellipse.h>
|
#include <agg/agg_ellipse.h>
|
||||||
|
|
||||||
|
|
||||||
svg::Circle::Circle(PaintState parentPaintState) : svg::Base(parentPaintState)
|
svg::Circle::Circle(PaintState parentPaintState) : svg::Base(parentPaintState)
|
||||||
|
@ -24,8 +24,8 @@
|
|||||||
|
|
||||||
#include <parserSVG/Debug.h>
|
#include <parserSVG/Debug.h>
|
||||||
#include <parserSVG/Ellipse.h>
|
#include <parserSVG/Ellipse.h>
|
||||||
#include <agg-2.4/agg_conv_stroke.h>
|
#include <agg/agg_conv_stroke.h>
|
||||||
#include <agg-2.4/agg_ellipse.h>
|
#include <agg/agg_ellipse.h>
|
||||||
|
|
||||||
svg::Ellipse::Ellipse(PaintState parentPaintState) : svg::Base(parentPaintState)
|
svg::Ellipse::Ellipse(PaintState parentPaintState) : svg::Base(parentPaintState)
|
||||||
{
|
{
|
||||||
|
@ -24,8 +24,8 @@
|
|||||||
|
|
||||||
#include <parserSVG/Debug.h>
|
#include <parserSVG/Debug.h>
|
||||||
#include <parserSVG/Line.h>
|
#include <parserSVG/Line.h>
|
||||||
#include <agg-2.4/agg_conv_stroke.h>
|
#include <agg/agg_conv_stroke.h>
|
||||||
#include <agg-2.4/agg_path_storage.h>
|
#include <agg/agg_path_storage.h>
|
||||||
|
|
||||||
svg::Line::Line(PaintState parentPaintState) : svg::Base(parentPaintState)
|
svg::Line::Line(PaintState parentPaintState) : svg::Base(parentPaintState)
|
||||||
{
|
{
|
||||||
|
@ -24,11 +24,11 @@
|
|||||||
|
|
||||||
#include <parserSVG/Debug.h>
|
#include <parserSVG/Debug.h>
|
||||||
#include <parserSVG/Path.h>
|
#include <parserSVG/Path.h>
|
||||||
#include <agg-2.4/agg_conv_stroke.h>
|
#include <agg/agg_conv_stroke.h>
|
||||||
#include <agg-2.4/agg_conv_dash.h>
|
#include <agg/agg_conv_dash.h>
|
||||||
#include <agg-2.4/agg_conv_curve.h>
|
#include <agg/agg_conv_curve.h>
|
||||||
#include <agg-2.4/agg_conv_contour.h>
|
#include <agg/agg_conv_contour.h>
|
||||||
#include <agg-2.4/agg_conv_smooth_poly1.h>
|
#include <agg/agg_conv_smooth_poly1.h>
|
||||||
|
|
||||||
svg::Path::Path(PaintState parentPaintState) : svg::Base(parentPaintState)
|
svg::Path::Path(PaintState parentPaintState) : svg::Base(parentPaintState)
|
||||||
{
|
{
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#define __SVG_PATH_H__
|
#define __SVG_PATH_H__
|
||||||
|
|
||||||
#include <parserSVG/Base.h>
|
#include <parserSVG/Base.h>
|
||||||
#include <agg-2.4/agg_path_storage.h>
|
#include <agg/agg_path_storage.h>
|
||||||
|
|
||||||
namespace svg
|
namespace svg
|
||||||
{
|
{
|
||||||
|
@ -24,8 +24,8 @@
|
|||||||
|
|
||||||
#include <parserSVG/Debug.h>
|
#include <parserSVG/Debug.h>
|
||||||
#include <parserSVG/Polygon.h>
|
#include <parserSVG/Polygon.h>
|
||||||
#include <agg-2.4/agg_conv_stroke.h>
|
#include <agg/agg_conv_stroke.h>
|
||||||
#include <agg-2.4/agg_path_storage.h>
|
#include <agg/agg_path_storage.h>
|
||||||
|
|
||||||
svg::Polygon::Polygon(PaintState parentPaintState) : svg::Base(parentPaintState)
|
svg::Polygon::Polygon(PaintState parentPaintState) : svg::Base(parentPaintState)
|
||||||
{
|
{
|
||||||
|
@ -24,8 +24,8 @@
|
|||||||
|
|
||||||
#include <parserSVG/Debug.h>
|
#include <parserSVG/Debug.h>
|
||||||
#include <parserSVG/Polyline.h>
|
#include <parserSVG/Polyline.h>
|
||||||
#include <agg-2.4/agg_conv_stroke.h>
|
#include <agg/agg_conv_stroke.h>
|
||||||
#include <agg-2.4/agg_path_storage.h>
|
#include <agg/agg_path_storage.h>
|
||||||
|
|
||||||
svg::Polyline::Polyline(PaintState parentPaintState) : svg::Base(parentPaintState)
|
svg::Polyline::Polyline(PaintState parentPaintState) : svg::Base(parentPaintState)
|
||||||
{
|
{
|
||||||
|
@ -24,8 +24,8 @@
|
|||||||
|
|
||||||
#include <parserSVG/Debug.h>
|
#include <parserSVG/Debug.h>
|
||||||
#include <parserSVG/Rectangle.h>
|
#include <parserSVG/Rectangle.h>
|
||||||
#include <agg-2.4/agg_rounded_rect.h>
|
#include <agg/agg_rounded_rect.h>
|
||||||
#include <agg-2.4/agg_conv_stroke.h>
|
#include <agg/agg_conv_stroke.h>
|
||||||
|
|
||||||
svg::Rectangle::Rectangle(PaintState parentPaintState) : svg::Base(parentPaintState)
|
svg::Rectangle::Rectangle(PaintState parentPaintState) : svg::Base(parentPaintState)
|
||||||
{
|
{
|
||||||
|
@ -27,16 +27,16 @@
|
|||||||
|
|
||||||
#include <etk/UString.h>
|
#include <etk/UString.h>
|
||||||
|
|
||||||
#include <agg-2.4/agg_basics.h>
|
#include <agg/agg_basics.h>
|
||||||
#include <agg-2.4/agg_rendering_buffer.h>
|
#include <agg/agg_rendering_buffer.h>
|
||||||
#include <agg-2.4/agg_rasterizer_scanline_aa.h>
|
#include <agg/agg_rasterizer_scanline_aa.h>
|
||||||
#include <agg-2.4/agg_scanline_p.h>
|
#include <agg/agg_scanline_p.h>
|
||||||
#include <agg-2.4/agg_renderer_scanline.h>
|
#include <agg/agg_renderer_scanline.h>
|
||||||
#include <agg-2.4/agg_path_storage.h>
|
#include <agg/agg_path_storage.h>
|
||||||
#include <agg-2.4/agg_conv_transform.h>
|
#include <agg/agg_conv_transform.h>
|
||||||
#include <agg-2.4/agg_bounding_rect.h>
|
#include <agg/agg_bounding_rect.h>
|
||||||
#include <agg-2.4/agg_color_rgba.h>
|
#include <agg/agg_color_rgba.h>
|
||||||
#include <agg-2.4/agg_pixfmt_rgba.h>
|
#include <agg/agg_pixfmt_rgba.h>
|
||||||
|
|
||||||
namespace svg
|
namespace svg
|
||||||
{
|
{
|
||||||
|
@ -36,16 +36,16 @@
|
|||||||
#include <parserSVG/Text.h>
|
#include <parserSVG/Text.h>
|
||||||
#include <parserSVG/Group.h>
|
#include <parserSVG/Group.h>
|
||||||
|
|
||||||
#include <agg-2.4/agg_basics.h>
|
#include <agg/agg_basics.h>
|
||||||
#include <agg-2.4/agg_rendering_buffer.h>
|
#include <agg/agg_rendering_buffer.h>
|
||||||
#include <agg-2.4/agg_rasterizer_scanline_aa.h>
|
#include <agg/agg_rasterizer_scanline_aa.h>
|
||||||
#include <agg-2.4/agg_scanline_p.h>
|
#include <agg/agg_scanline_p.h>
|
||||||
#include <agg-2.4/agg_renderer_scanline.h>
|
#include <agg/agg_renderer_scanline.h>
|
||||||
#include <agg-2.4/agg_path_storage.h>
|
#include <agg/agg_path_storage.h>
|
||||||
#include <agg-2.4/agg_conv_transform.h>
|
#include <agg/agg_conv_transform.h>
|
||||||
#include <agg-2.4/agg_bounding_rect.h>
|
#include <agg/agg_bounding_rect.h>
|
||||||
#include <agg-2.4/agg_color_rgba.h>
|
#include <agg/agg_color_rgba.h>
|
||||||
#include <agg-2.4/agg_pixfmt_rgba.h>
|
#include <agg/agg_pixfmt_rgba.h>
|
||||||
|
|
||||||
svg::Parser::Parser(etk::File fileName) : m_renderedElement(NULL)
|
svg::Parser::Parser(etk::File fileName) : m_renderedElement(NULL)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user