1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: John Horigan <john@glyphic.com>
Date: Thu, 22 Jun 2017 09:32:40 +0200
Subject: Remove obsolete path reorientation code (fixes nonzero fill)
Bug-Debian: https://bugs.debian.org/522360
Origin: backport, https://sourceforge.net/p/agg/svn/127/
---
codecs/svg.cc | 1 -
1 file changed, 1 deletion(-)
diff --git a/codecs/svg.cc b/codecs/svg.cc
index a6f8ef1..ffc441a 100644
--- a/codecs/svg.cc
+++ b/codecs/svg.cc
@@ -59,7 +59,6 @@ int SVGCodec::readImage (std::istream* stream, Image& image, const std::string&
const double expand = 0;
const double gamma = 1;
- m_path.arrange_orientations();
m_path.bounding_rect (&min_x, &min_y, &max_x, &max_y);
// prevent crash for invalid constraints
|