Thanks to visit codestin.com Credit goes to github.com
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 f4aeb5b commit c4d1392Copy full SHA for c4d1392
1 file changed
agg24/include/agg_rasterizer_cells_aa.h
@@ -184,13 +184,8 @@ namespace agg
184
if((m_num_cells & cell_block_mask) == 0)
185
{
186
if(m_num_blocks >= cell_block_limit) {
187
- static Py::Exception e(
188
- Py::OverflowError(
189
- "Agg rendering complexity exceeded. Consider downsampling or decimating your data."));
190
-
191
- /* If this exception is thrown too often, one can
192
- increase cell_block_limit */
193
- throw e;
+ throw Py::OverflowError(
+ "Agg rendering complexity exceeded. Consider downsampling or decimating your data.");
194
}
195
allocate_block();
196
0 commit comments