Werner Lemberg pushed to branch master at FreeType / FreeType
Commits:
-
be6ab319
by Anuj Verma at 2021-08-02T06:49:50+02:00
1 changed file:
Changes:
... | ... | @@ -928,7 +928,7 @@ |
928 | 928 |
|
929 | 929 |
/* Forward pass of rows (left -> right). Leave the first */
|
930 | 930 |
/* column, which gets covered in the backward pass. */
|
931 |
- for ( i = 1; i < w; i++ )
|
|
931 |
+ for ( i = 1; i < w - 1; i++ )
|
|
932 | 932 |
{
|
933 | 933 |
index = j * w + i;
|
934 | 934 |
current = dm + index;
|
... | ... | @@ -997,7 +997,7 @@ |
997 | 997 |
|
998 | 998 |
/* Forward pass of rows (left -> right). Leave the first */
|
999 | 999 |
/* column, which gets covered in the backward pass. */
|
1000 |
- for ( i = 1; i < w; i++ )
|
|
1000 |
+ for ( i = 1; i < w - 1; i++ )
|
|
1001 | 1001 |
{
|
1002 | 1002 |
index = j * w + i;
|
1003 | 1003 |
current = dm + index;
|