Skip to content

Commit f2d35bb

Browse files
committed
MNT: increase the maximum number of cells in the Agg rasterizer
This allows longer, more textured, paths to be drawn with the default settings at the risk of very long run times.
1 parent 722666b commit f2d35bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_backend_agg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ RendererAgg::RendererAgg(unsigned int width, unsigned int height, double dpi)
4545
rendererBase(),
4646
rendererAA(),
4747
rendererBin(),
48-
theRasterizer(8192),
48+
theRasterizer(32768),
4949
lastclippath(NULL),
5050
_fill_color(agg::rgba(1, 1, 1, 0))
5151
{

0 commit comments

Comments
 (0)