summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNikhil Ramakrishnan <ramakrishnan.nikhil@gmail.com>2019-03-02 16:05:51 +0530
committerNikhil Ramakrishnan <ramakrishnan.nikhil@gmail.com>2019-03-02 16:05:51 +0530
commit6d65c60fca0ebce88e2bcfeac92a7a791e03bf42 (patch)
tree7d7c710807a03853803d2c62848123ef512302da /include
parentbf04c592490402e7f00f6c7900bac01f9bd08fc6 (diff)
downloadfreetype2-6d65c60fca0ebce88e2bcfeac92a7a791e03bf42.tar.gz
Minor formatting.
Diffstat (limited to 'include')
-rw-r--r--include/freetype/ftlcdfil.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/freetype/ftlcdfil.h b/include/freetype/ftlcdfil.h
index 032279077..3a19d043b 100644
--- a/include/freetype/ftlcdfil.h
+++ b/include/freetype/ftlcdfil.h
@@ -64,14 +64,14 @@ FT_BEGIN_HEADER
* A good 5-tap FIR filter should be applied to subpixel coverages
* regardless of pixel boundaries and should have these properties:
*
- * 1) It should be symmetrical, like {~a, b, c, b, a~}, to avoid
+ * 1. It should be symmetrical, like {~a, b, c, b, a~}, to avoid
* any shifts in appearance.
*
- * 2) It should be color-balanced, meaning a~+ b~=~c, to reduce color
+ * 2. It should be color-balanced, meaning a~+ b~=~c, to reduce color
* fringes by distributing the computed coverage for one subpixel to
* all subpixels equally.
*
- * 3) It should be normalized, meaning 2a~+ 2b~+ c~=~1.0 to maintain
+ * 3. It should be normalized, meaning 2a~+ 2b~+ c~=~1.0 to maintain
* overall brightness.
*
* Boxy 3-tap filter {0, 1/3, 1/3, 1/3, 0} is sharper but is less