aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu
diff options
context:
space:
mode:
authorGravatar ethannicholas <ethannicholas@google.com>2016-08-30 07:26:58 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-08-30 07:26:58 -0700
commitfc6cb7366493665dce96c5d66e67e94924b21cb6 (patch)
tree6a5e9cdcb0eb5a5d4fc6716a5f50ed43dfb2511f /src/gpu
parentbabc697ae8f7cb2191b049f446bf44d029376d69 (diff)
changed kCurveConnectionThreshold in GrAAConvexTessellator
Diffstat (limited to 'src/gpu')
-rw-r--r--src/gpu/batches/GrAAConvexTessellator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/batches/GrAAConvexTessellator.cpp b/src/gpu/batches/GrAAConvexTessellator.cpp
index 2c069f6342..af3ce89257 100644
--- a/src/gpu/batches/GrAAConvexTessellator.cpp
+++ b/src/gpu/batches/GrAAConvexTessellator.cpp
@@ -30,7 +30,7 @@ static const SkScalar kConicTolerance = 0.5f;
static const SkScalar kRoundCapThreshold = 0.8f;
// dot product above which we consider two adjacent curves to be part of the "same" curve
-static const SkScalar kCurveConnectionThreshold = 0.95f;
+static const SkScalar kCurveConnectionThreshold = 0.8f;
static SkScalar intersect(const SkPoint& p0, const SkPoint& n0,
const SkPoint& p1, const SkPoint& n1) {