From 6d65c60fca0ebce88e2bcfeac92a7a791e03bf42 Mon Sep 17 00:00:00 2001 From: Nikhil Ramakrishnan Date: Sat, 2 Mar 2019 16:05:51 +0530 Subject: [PATCH] Minor formatting. --- include/freetype/ftlcdfil.h | 6 +++--- 1 file 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