Add option to disable X axis font's pre-scaling

If used pre-scaling along X null the effect of the font's hinting.
This commit is contained in:
Francesco Abbate
2020-06-12 16:06:39 +02:00
parent 4d3693479d
commit 3c3662b3ba
4 changed files with 18 additions and 14 deletions
+4 -3
View File
@@ -18,9 +18,10 @@ struct FR_Impl;
typedef struct FR_Impl FR_Renderer;
enum {
FR_HINTING = 1 << 0,
FR_KERNING = 1 << 2,
FR_SUBPIXEL = 1 << 3,
FR_HINTING = 1 << 0,
FR_KERNING = 1 << 1,
FR_SUBPIXEL = 1 << 2,
FR_PRESCALE_X = 1 << 3,
};
typedef struct {