update simple shaping example (closes #298)
add call to `FT_Set_Char_Size`, otherwise default size remains at `0`, and glyph positions come back as `0` too
This commit is contained in:
parent
7b78d2233d
commit
d3d0f15f7d
@ -157,7 +157,8 @@
|
|||||||
</orderedlist>
|
</orderedlist>
|
||||||
<programlisting language="C">
|
<programlisting language="C">
|
||||||
#include <hb-ft.h>
|
#include <hb-ft.h>
|
||||||
FT_New_Face(ft_library, font_path, index, &face)
|
FT_New_Face(ft_library, font_path, index, &face);
|
||||||
|
FT_Set_Char_Size(face, 0, 1000, 0, 0);
|
||||||
hb_font_t *font = hb_ft_font_create(face);
|
hb_font_t *font = hb_ft_font_create(face);
|
||||||
</programlisting>
|
</programlisting>
|
||||||
<orderedlist numeration="arabic">
|
<orderedlist numeration="arabic">
|
||||||
|
Loading…
Reference in New Issue
Block a user