commented out usage of rasterizer_outline_aa for strokes <= 1.0

This commit is contained in:
Artem Pavlenko 2006-11-18 16:47:29 +00:00
parent 6c04c5f745
commit 004f720fbd

View file

@ -235,18 +235,19 @@ namespace mapnik
ren.color(agg::rgba8(r, g, b, int(255*stroke_.get_opacity()))); ren.color(agg::rgba8(r, g, b, int(255*stroke_.get_opacity())));
agg::render_scanlines(ras, sl, ren); agg::render_scanlines(ras, sl, ren);
} }
else if (stroke_.get_width() <= 1.0)
{
agg::line_profile_aa prof;
prof.width(stroke_.get_width());
renderer_oaa ren_oaa(renb, prof);
rasterizer_outline_aa ras_oaa(ren_oaa);
ren_oaa.color(agg::rgba8(r, g, b, int(255*stroke_.get_opacity()))); //else if (stroke_.get_width() <= 1.0)
ren_oaa.clip_box(0,0,pixmap_.width(),pixmap_.height()); //{
ras_oaa.add_path(path); // agg::line_profile_aa prof;
// prof.width(stroke_.get_width());
// renderer_oaa ren_oaa(renb, prof);
// rasterizer_outline_aa ras_oaa(ren_oaa);
} // ren_oaa.color(agg::rgba8(r, g, b, int(255*stroke_.get_opacity())));
// ren_oaa.clip_box(0,0,pixmap_.width(),pixmap_.height());
// ras_oaa.add_path(path);
// }
else else
{ {
renderer ren(renb); renderer ren(renb);