Fix degenerate and near-degenerate hairlines on the gpu
authorcommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 24 May 2013 18:51:55 +0000 (18:51 +0000)
committercommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 24 May 2013 18:51:55 +0000 (18:51 +0000)
R=robertphillips@google.com, bsalomon@google.com

Author: bsalomon@google.com

Review URL: https://chromiumcodereview.appspot.com/16035002

git-svn-id: http://skia.googlecode.com/svn/trunk@9279 2bbb7eff-a529-9590-31e7-b0007b416f81

gm/hairlines.cpp [new file with mode: 0644]
gyp/gmslides.gypi
src/gpu/GrAAHairLinePathRenderer.cpp

diff --git a/gm/hairlines.cpp b/gm/hairlines.cpp
new file mode 100644 (file)
index 0000000..e73cc6d
--- /dev/null
@@ -0,0 +1,143 @@
+/*
+ * Copyright 2013 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "gm.h"
+#include "SkCanvas.h"
+#include "SkTArray.h"
+
+namespace skiagm {
+
+class HairlinesGM : public GM {
+protected:
+
+    virtual SkString onShortName() SK_OVERRIDE {
+        return SkString("hairlines");
+    }
+
+    virtual SkISize onISize() { return make_isize(800, 600); }
+
+    virtual void onOnceBeforeDraw() SK_OVERRIDE {
+        {
+            SkPath* lineAnglesPath = &fPaths.push_back();
+            enum {
+                kNumAngles = 15,
+                kRadius = 40,
+            };
+            for (int i = 0; i < kNumAngles; ++i) {
+                SkScalar angle = SK_ScalarPI * SkIntToScalar(i) / kNumAngles;
+                SkScalar x = kRadius * SkScalarCos(angle);
+                SkScalar y = kRadius * SkScalarSin(angle);
+                lineAnglesPath->moveTo(x, y);
+                lineAnglesPath->lineTo(-x, -y);
+            }
+        }
+
+        {
+            SkPath* kindaTightQuad = &fPaths.push_back();
+            kindaTightQuad->moveTo(0, -10 * SK_Scalar1);
+            kindaTightQuad->quadTo(SkIntToScalar(100), SkIntToScalar(100), -10 * SK_Scalar1, 0);
+        }
+
+        {
+            SkPath* tightQuad = &fPaths.push_back();
+            tightQuad->moveTo(0, -5 * SK_Scalar1);
+            tightQuad->quadTo(SkIntToScalar(100), SkIntToScalar(100), -5 * SK_Scalar1, 0);
+        }
+
+        {
+            SkPath* tighterQuad = &fPaths.push_back();
+            tighterQuad->moveTo(0, -2 * SK_Scalar1);
+            tighterQuad->quadTo(SkIntToScalar(100), SkIntToScalar(100), -2 * SK_Scalar1, 0);
+        }
+
+        {
+            SkPath* unevenTighterQuad = &fPaths.push_back();
+            unevenTighterQuad->moveTo(0, -1 * SK_Scalar1);
+            SkPoint p;
+            p.set(-2 * SK_Scalar1 + 3 * SkIntToScalar(102) / 4, SkIntToScalar(75));
+            unevenTighterQuad->quadTo(SkIntToScalar(100), SkIntToScalar(100), p.fX, p.fY);
+        }
+
+        {
+            SkPath* reallyTightQuad = &fPaths.push_back();
+            reallyTightQuad->moveTo(0, -1 * SK_Scalar1);
+            reallyTightQuad->quadTo(SkIntToScalar(100), SkIntToScalar(100), -1 * SK_Scalar1, 0);
+        }
+
+        {
+            SkPath* closedQuad = &fPaths.push_back();
+            closedQuad->moveTo(0, -0);
+            closedQuad->quadTo(SkIntToScalar(100), SkIntToScalar(100), 0, 0);
+        }
+
+        {
+            SkPath* unevenClosedQuad = &fPaths.push_back();
+            unevenClosedQuad->moveTo(0, -0);
+            unevenClosedQuad->quadTo(SkIntToScalar(100), SkIntToScalar(100),
+                                     SkIntToScalar(75), SkIntToScalar(75));
+        }
+    }
+
+    virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
+        static const SkAlpha kAlphaValue[] = { 0xFF, 0x40 };
+
+        enum {
+            kMargin = 5,
+        };
+        int wrapX = canvas->getDeviceSize().fWidth - kMargin;
+
+        SkScalar maxH = 0;
+        canvas->translate(SkIntToScalar(kMargin), SkIntToScalar(kMargin));
+        canvas->save();
+
+        SkScalar x = SkIntToScalar(kMargin);
+        for (int p = 0; p < fPaths.count(); ++p) {
+            for (size_t a = 0; a < SK_ARRAY_COUNT(kAlphaValue); ++a) {
+                for (int aa = 0; aa < 2; ++aa) {
+                    const SkRect& bounds = fPaths[p].getBounds();
+
+                    if (x + bounds.width() > wrapX) {
+                        canvas->restore();
+                        canvas->translate(0, maxH + SkIntToScalar(kMargin));
+                        canvas->save();
+                        maxH = 0;
+                        x = SkIntToScalar(kMargin);
+                    }
+
+                    SkPaint paint;
+                    paint.setARGB(kAlphaValue[a], 0, 0, 0);
+                    paint.setAntiAlias(SkToBool(aa));
+                    paint.setStyle(SkPaint::kStroke_Style);
+                    paint.setStrokeWidth(0);
+
+                    canvas->save();
+                    canvas->translate(-bounds.fLeft, -bounds.fTop);
+                    canvas->drawPath(fPaths[p], paint);
+                    canvas->restore();
+
+                    maxH = SkMaxScalar(maxH, bounds.height());
+
+                    SkScalar dx = bounds.width() + SkIntToScalar(kMargin);
+                    x += dx;
+                    canvas->translate(dx, 0);
+                }
+            }
+        }
+        canvas->restore();
+    }
+
+private:
+    SkTArray<SkPath> fPaths;
+    typedef GM INHERITED;
+};
+
+//////////////////////////////////////////////////////////////////////////////
+
+static GM* MyFactory(void*) { return new HairlinesGM; }
+static GMRegistry reg(MyFactory);
+
+}
index 2cc188a..607fc37 100644 (file)
@@ -46,6 +46,7 @@
     '../gm/giantbitmap.cpp',
     '../gm/gradients.cpp',
     '../gm/gradtext.cpp',
+    '../gm/hairlines.cpp',
     '../gm/hairmodes.cpp',
     '../gm/hittestpath.cpp',
     '../gm/imageblur.cpp',
index 8e3ec5b..51d5a79 100644 (file)
@@ -217,14 +217,14 @@ int generate_lines_and_quads(const SkPath& path,
     bool persp = m.hasPerspective();
 
     for (;;) {
-        GrPoint pts[4];
+        GrPoint pathPts[4];
         GrPoint devPts[4];
-        SkPath::Verb verb = iter.next(pts);
+        SkPath::Verb verb = iter.next(pathPts);
         switch (verb) {
             case SkPath::kMove_Verb:
                 break;
             case SkPath::kLine_Verb:
-                m.mapPoints(devPts, pts, 2);
+                m.mapPoints(devPts, pathPts, 2);
                 bounds.setBounds(devPts, 2);
                 bounds.outset(SK_Scalar1, SK_Scalar1);
                 bounds.roundOut(&ibounds);
@@ -234,34 +234,46 @@ int generate_lines_and_quads(const SkPath& path,
                     pts[1] = devPts[1];
                 }
                 break;
-            case SkPath::kQuad_Verb:
-                m.mapPoints(devPts, pts, 3);
-                bounds.setBounds(devPts, 3);
-                bounds.outset(SK_Scalar1, SK_Scalar1);
-                bounds.roundOut(&ibounds);
-                if (SkIRect::Intersects(devClipBounds, ibounds)) {
-                    int subdiv = num_quad_subdivs(devPts);
-                    GrAssert(subdiv >= -1);
-                    if (-1 == subdiv) {
-                        SkPoint* pts = lines->push_back_n(4);
-                        pts[0] = devPts[0];
-                        pts[1] = devPts[1];
-                        pts[2] = devPts[1];
-                        pts[3] = devPts[2];
-                    } else {
-                        // when in perspective keep quads in src space
-                        SkPoint* qPts = persp ? pts : devPts;
-                        SkPoint* pts = quads->push_back_n(3);
-                        pts[0] = qPts[0];
-                        pts[1] = qPts[1];
-                        pts[2] = qPts[2];
-                        quadSubdivCnts->push_back() = subdiv;
-                        totalQuadCount += 1 << subdiv;
+            case SkPath::kQuad_Verb: {
+                SkPoint choppedPts[5];
+                // Chopping the quad helps when the quad is either degenerate or nearly degenerate.
+                // When it is degenerate it allows the approximation with lines to work since the
+                // chop point (if there is one) will be at the parabola's vertex. In the nearly
+                // degenerate the QuadUVMatrix computed for the points is almost singular which
+                // can cause rendering artifacts.
+                int n = SkChopQuadAtMaxCurvature(pathPts, choppedPts);
+                for (int i = 0; i < n; ++i) {
+                    SkPoint* quadPts = choppedPts + i * 2;
+                    m.mapPoints(devPts, quadPts, 3);
+                    bounds.setBounds(devPts, 3);
+                    bounds.outset(SK_Scalar1, SK_Scalar1);
+                    bounds.roundOut(&ibounds);
+
+                    if (SkIRect::Intersects(devClipBounds, ibounds)) {
+                        int subdiv = num_quad_subdivs(devPts);
+                        GrAssert(subdiv >= -1);
+                        if (-1 == subdiv) {
+                            SkPoint* pts = lines->push_back_n(4);
+                            pts[0] = devPts[0];
+                            pts[1] = devPts[1];
+                            pts[2] = devPts[1];
+                            pts[3] = devPts[2];
+                        } else {
+                            // when in perspective keep quads in src space
+                            SkPoint* qPts = persp ? quadPts : devPts;
+                            SkPoint* pts = quads->push_back_n(3);
+                            pts[0] = qPts[0];
+                            pts[1] = qPts[1];
+                            pts[2] = qPts[2];
+                            quadSubdivCnts->push_back() = subdiv;
+                            totalQuadCount += 1 << subdiv;
+                        }
                     }
                 }
                 break;
+            }
             case SkPath::kCubic_Verb:
-                m.mapPoints(devPts, pts, 4);
+                m.mapPoints(devPts, pathPts, 4);
                 bounds.setBounds(devPts, 4);
                 bounds.outset(SK_Scalar1, SK_Scalar1);
                 bounds.roundOut(&ibounds);
@@ -275,7 +287,7 @@ int generate_lines_and_quads(const SkPath& path,
                         SkScalar tolScale =
                             GrPathUtils::scaleToleranceToSrc(SK_Scalar1, m,
                                                              path.getBounds());
-                        GrPathUtils::convertCubicToQuads(pts, tolScale, false, kDummyDir, &q);
+                        GrPathUtils::convertCubicToQuads(pathPts, tolScale, false, kDummyDir, &q);
                     } else {
                         GrPathUtils::convertCubicToQuads(devPts, SK_Scalar1, false, kDummyDir, &q);
                     }
@@ -715,8 +727,7 @@ bool GrAAHairLinePathRenderer::createGeom(
     int rtHeight = drawState->getRenderTarget()->height();
 
     GrIRect devClipBounds;
-    target->getClip()->getConservativeBounds(drawState->getRenderTarget(),
-                                             &devClipBounds);
+    target->getClip()->getConservativeBounds(drawState->getRenderTarget(), &devClipBounds);
 
     SkMatrix viewM = drawState->getViewMatrix();