+ fix SEG_CLOSE value to be compatible with agg
This commit is contained in:
parent
4ddddba254
commit
1844217615
1 changed files with 4 additions and 4 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue