+ fix SEG_CLOSE value to be compatible with agg

This commit is contained in:
artemp 2012-07-26 15:19:11 +01:00
parent 4ddddba254
commit 1844217615

View file

@ -29,10 +29,10 @@ namespace mapnik
{
enum CommandType {
SEG_END =0,
SEG_MOVETO=1,
SEG_LINETO=2,
SEG_CLOSE =3
SEG_END = 0,
SEG_MOVETO = 1,
SEG_LINETO = 2,
SEG_CLOSE = (0x40 | 0x0f)
};
template <typename T,int dim>