We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8caeeae commit e9fcc08Copy full SHA for e9fcc08
agg24/include/agg_rasterizer_cells_aa.h
@@ -185,7 +185,10 @@ namespace agg
185
if((m_num_cells & cell_block_mask) == 0)
186
{
187
if(m_num_blocks >= cell_block_limit) {
188
- throw "Agg rendering complexity exceeded.";
+ /* If this exception is thrown too often, one can
189
+ increase cell_block_limit */
190
+ throw "Agg rendering complexity exceeded. "
191
+ "Consider downsampling or decimating your data.";
192
}
193
allocate_block();
194
0 commit comments