diff options
author | fakhriaunur <fakhri.aunur@gmail.com> | 2021-09-07 18:08:10 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-07 18:08:10 +0700 |
commit | fc6581c1b06a5d041d83e1fc227564002903e8a2 (patch) | |
tree | 6de841d84ec944afc444e4e75161298c347e2dc3 /hb.c | |
parent | a3e807043e20d5488b9484cbecccaafd245f8a58 (diff) |
Update hb.c
Change the default state to disabled (uncomment the latter).
Clean the unused commented lines.
Diffstat (limited to 'hb.c')
-rw-r--r-- | hb.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -18,8 +18,8 @@ * latter to enable the (selected) font features. */ -//hb_feature_t features[] = { 0 }; -hb_feature_t features[] = { FEATURE('s','s','0','1'), FEATURE('s','s','0','2'), FEATURE('s','s','0','3'), FEATURE('s','s','0','5'), FEATURE('s','s','0','6'), FEATURE('s','s','0','7'), FEATURE('s','s','0','8'), FEATURE('z','e','r','o') }; +hb_feature_t features[] = { 0 }; +//hb_feature_t features[] = { FEATURE('s','s','0','1'), FEATURE('s','s','0','2'), FEATURE('s','s','0','3'), FEATURE('s','s','0','5'), FEATURE('s','s','0','6'), FEATURE('s','s','0','7'), FEATURE('s','s','0','8'), FEATURE('z','e','r','o') }; void hbtransformsegment(XftFont *xfont, const Glyph *string, hb_codepoint_t *codepoints, int start, int length); hb_font_t *hbfindfont(XftFont *match); @@ -73,7 +73,6 @@ void hbtransform(XftGlyphFontSpec *specs, const Glyph *glyphs, size_t len, int x, int y) { int start = 0, length = 1, gstart = 0; - //hb_codepoint_t *codepoints = calloc(len, sizeof(hb_codepoint_t)); hb_codepoint_t *codepoints = calloc((unsigned int)len, sizeof(hb_codepoint_t)); for (int idx = 1, specidx = 1; idx < len; idx++) { @@ -139,7 +138,6 @@ hbtransformsegment(XftFont *xfont, const Glyph *string, hb_codepoint_t *codepoin } /* Shape the segment. */ - //hb_shape(font, buffer, NULL, 0); hb_shape(font, buffer, features, sizeof(features)); /* Get new glyph info. */ |