8000 MNT: increase the maximum number of cells in the Agg rasterizer · matplotlib/matplotlib@c4b1ddd · GitHub
[go: up one dir, main page]

Skip to content

Commit c4b1ddd

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 2116856 commit c4b1ddd

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
41C7 lastclippath(NULL),
5050
_fill_color(agg::rgba(1, 1, 1, 0))
5151
{

0 commit comments

Comments
 (0)
0