* src/sdf/ftsdfrend.c (ft_sdf_render): Don't negate unsigned integers.

This commit is contained in:
Anuj Verma 2020-07-04 17:29:39 +05:30 committed by anujverma
parent 4fcc1653ca
commit 44e16a0be6
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2020-07-04 Anuj Verma <anujv@iitbhilai.ac.in>
* src/sdf/ftsdfrend.c (ft_sdf_render): Don't negate
unsigned integers.
2020-07-03 Anuj Verma <anujv@iitbhilai.ac.in>
* src/sdf/ftsdf.c: Use ASCII single quote (') instead

View File

@ -159,8 +159,8 @@
FT_Pos x_shift = 0;
FT_Pos y_shift = 0;
FT_UInt x_pad = 0;
FT_UInt y_pad = 0;
FT_Pos x_pad = 0;
FT_Pos y_pad = 0;
SDF_Raster_Params params;
SDF_Renderer sdf_module = SDF_RENDERER( module );