Commit 3da5182804211e4f7a85d90d25717b492283d3d2

Werner Lemberg 2013-06-23T09:48:20

Fix comment.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/src/cff/cf2font.c b/src/cff/cf2font.c
index 479d912..996db74 100644
--- a/src/cff/cf2font.c
+++ b/src/cff/cf2font.c
@@ -98,10 +98,10 @@
        * The darkening amount is smaller for thicker stems.
        * It becomes zero when the stem is thicker than 2.333 pixels.
        *
-       * In Avalon rasterizer,
+       * By default, we use
        *
-       *   darkenAmount = 0.5 pixels   if scaledStem <= 0.5 pixels,
-       *   darkenAmount = 0.333 pixels if 1 <= scaledStem <= 1.667 pixels,
+       *   darkenAmount = 0.4 pixels   if scaledStem <= 0.5 pixels,
+       *   darkenAmount = 0.275 pixels if 1 <= scaledStem <= 1.667 pixels,
        *   darkenAmount = 0 pixel      if scaledStem >= 2.333 pixels,
        *
        * and piecewise linear in-between.