From b22badf221fcb768d31e77b4403f1131f14ace2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Sat, 1 Apr 2006 16:49:18 +0000 Subject: [PATCH] added TODO comment about writing an AGG Vertex Source for BShape data git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16956 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/app/drawing/Painter/Painter.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/servers/app/drawing/Painter/Painter.cpp b/src/servers/app/drawing/Painter/Painter.cpp index 05b39964dc..e94a967f27 100644 --- a/src/servers/app/drawing/Painter/Painter.cpp +++ b/src/servers/app/drawing/Painter/Painter.cpp @@ -516,6 +516,9 @@ Painter::DrawShape(const int32& opCount, const uint32* opList, { CHECK_CLIPPING + // TODO: if shapes are ever used more heavily in Haiku, + // it would be nice to use BShape data directly (write + // an AGG "VertexSource" adaptor) agg::path_storage path; for (int32 i = 0; i < opCount; i++) { uint32 op = opList[i] & 0xFF000000;