diff options
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/agg23/agg_rasterizer_scanline_aa.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/third_party/agg23/agg_rasterizer_scanline_aa.h b/third_party/agg23/agg_rasterizer_scanline_aa.h index 3cf1822301..fc28290f54 100644 --- a/third_party/agg23/agg_rasterizer_scanline_aa.h +++ b/third_party/agg23/agg_rasterizer_scanline_aa.h @@ -390,8 +390,11 @@ public: unsigned cmd; vs.rewind(path_id); while(!is_stop(cmd = vs.vertex(&x, &y))) { - if (pMatrix) - pMatrix->TransformPoint(x, y); + if (pMatrix) { + CFX_PointF ret = pMatrix->Transform(CFX_PointF(x, y)); + x = ret.x; + y = ret.y; + } add_vertex(x, y, cmd); } } |