From 2154af209f6d269e29c6e991ce6c1349dfc85b93 Mon Sep 17 00:00:00 2001 From: Chris Craik Date: Fri, 12 Oct 2012 11:31:37 -0700 Subject: fix stroke sub-hairline threshold bug:7339943 Change-Id: I4051a03f4cd5bd2c313840208540601fb7a056e2 --- libs/hwui/PathRenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs') diff --git a/libs/hwui/PathRenderer.cpp b/libs/hwui/PathRenderer.cpp index 5b55c2b..58d6cb8 100644 --- a/libs/hwui/PathRenderer.cpp +++ b/libs/hwui/PathRenderer.cpp @@ -215,7 +215,7 @@ void getStrokeVerticesFromPerimeterAA(const Vector& perimeter, float hal // alpha value (TODO: support different X/Y scale) float maxAlpha = 1.0f; if (halfStrokeWidth != 0 && inverseScaleX == inverseScaleY && - halfStrokeWidth * inverseScaleX < 1.0f) { + halfStrokeWidth * inverseScaleX < 0.5f) { maxAlpha *= (2 * halfStrokeWidth) / inverseScaleX; halfStrokeWidth = 0.0f; } -- cgit v1.1