diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2011-04-14 19:38:45 (GMT) |
---|---|---|
committer | Lars Knoll <lars.knoll@nokia.com> | 2011-05-12 07:40:08 (GMT) |
commit | 37c329a3e35fabc88fbcad824a69f37c671d2132 (patch) | |
tree | 1243d8f2d12564dc43681b37b55d33128d88e0e3 /src/gui/painting/qpaintengine_raster_p.h | |
parent | c5846314dfd80e7f7f32ba737f1884dcccbbd80d (diff) | |
download | Qt-37c329a3e35fabc88fbcad824a69f37c671d2132.zip Qt-37c329a3e35fabc88fbcad824a69f37c671d2132.tar.gz Qt-37c329a3e35fabc88fbcad824a69f37c671d2132.tar.bz2 |
New algorithm for drawing thin lines
Added a new QCosmeticStroker class for drawing thin
lines. The class can handle both aliased and antialiased
lines.
The code replaces all the midpoint line drawing algorithms in
the raster paintengine and gives correct subpixel positioning
for lines.
It gives around 30% to 50% speedup against the midpoint algorithm. If
we missed that fast path, the speedup is around between a factor of
6 to 8 for lines and aliased paths and 100 and 400 for antialiased
paths.
Reviewed-by: Kim
Diffstat (limited to 'src/gui/painting/qpaintengine_raster_p.h')
-rw-r--r-- | src/gui/painting/qpaintengine_raster_p.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gui/painting/qpaintengine_raster_p.h b/src/gui/painting/qpaintengine_raster_p.h index 52f51fa..122c2b8 100644 --- a/src/gui/painting/qpaintengine_raster_p.h +++ b/src/gui/painting/qpaintengine_raster_p.h @@ -196,9 +196,6 @@ public: void stroke(const QVectorPath &path, const QPen &pen); void fill(const QVectorPath &path, const QBrush &brush); - void strokePolygonCosmetic(const QPoint *pts, int pointCount, PolygonDrawMode mode); - void strokePolygonCosmetic(const QPointF *pt, int pointCount, PolygonDrawMode mode); - void clip(const QVectorPath &path, Qt::ClipOperation op); void clip(const QRect &rect, Qt::ClipOperation op); void clip(const QRegion ®ion, Qt::ClipOperation op); @@ -328,8 +325,6 @@ public: bool isUnclipped_normalized(const QRect &rect) const; bool isUnclipped(const QRect &rect, int penWidth) const; bool isUnclipped(const QRectF &rect, int penWidth) const; - ProcessSpans getPenFunc(const QRect &rect, const QSpanData *data) const; - ProcessSpans getPenFunc(const QRectF &rect, const QSpanData *data) const; ProcessSpans getBrushFunc(const QRect &rect, const QSpanData *data) const; ProcessSpans getBrushFunc(const QRectF &rect, const QSpanData *data) const; |