This commit is contained in:
artemp 2014-09-29 12:22:39 +01:00
parent e57f66b97d
commit 7f81fc9146

View file

@ -211,7 +211,6 @@ struct converter_traits<T,mapnik::clip_poly_tag>
{ {
auto const& box = args.bbox; auto const& box = args.bbox;
geom.clip_box(box.minx(),box.miny(),box.maxx(),box.maxy()); geom.clip_box(box.minx(),box.miny(),box.maxx(),box.maxy());
//geom.set_clip_box(box);
} }
}; };
@ -221,10 +220,7 @@ struct converter_traits<T,mapnik::close_poly_tag>
using geometry_type = T; using geometry_type = T;
using conv_type = typename agg::conv_close_polygon<geometry_type>; using conv_type = typename agg::conv_close_polygon<geometry_type>;
template <typename Args> template <typename Args>
static void setup(geometry_type & , Args const&) static void setup(geometry_type & , Args const&) {}
{
// no-op
}
}; };
template <typename T> template <typename T>