pango 2.0.2-x86-mingw32 → 2.0.3-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (208) hide show
  1. checksums.yaml +7 -0
  2. data/README +2 -2
  3. data/Rakefile +7 -5
  4. data/ext/pango/extconf.rb +4 -4
  5. data/ext/pango/rbpango.c +0 -9
  6. data/ext/pango/rbpango.h +2 -10
  7. data/ext/pango/rbpangoanalysis.c +0 -4
  8. data/ext/pango/rbpangoattribute.c +1 -26
  9. data/ext/pango/rbpangoattrlist.c +0 -4
  10. data/ext/pango/rbpangocairo.c +13 -12
  11. data/ext/pango/rbpangocairocontext.c +6 -26
  12. data/ext/pango/rbpangocontext.c +2 -14
  13. data/ext/pango/rbpangofont.c +0 -12
  14. data/ext/pango/rbpangofontdescription.c +0 -5
  15. data/ext/pango/rbpangofontface.c +0 -6
  16. data/ext/pango/rbpangofontfamily.c +0 -3
  17. data/ext/pango/rbpangofontmap.c +0 -4
  18. data/ext/pango/rbpangofontmetrics.c +1 -4
  19. data/ext/pango/rbpangofontset.c +0 -4
  20. data/ext/pango/rbpangoglyphitem.c +0 -8
  21. data/ext/pango/rbpangoglyphstring.c +0 -4
  22. data/ext/pango/rbpangoitem.c +0 -16
  23. data/ext/pango/rbpangolanguage.c +0 -5
  24. data/ext/pango/rbpangolayout.c +36 -19
  25. data/ext/pango/rbpangolayoutline.c +0 -33
  26. data/ext/pango/rbpangologattr.c +0 -5
  27. data/ext/pango/rbpangomatrix.c +0 -10
  28. data/ext/pango/rbpangoprivate.h +0 -4
  29. data/ext/pango/rbpangorenderer.c +0 -6
  30. data/ext/pango/rbpangoscript.c +0 -4
  31. data/ext/pango/rbpangoscriptiter.c +0 -5
  32. data/lib/1.9/pango.so +0 -0
  33. data/lib/2.0/pango.so +0 -0
  34. data/test/{test_layout.rb → test-layout.rb} +14 -0
  35. data/vendor/local/bin/hb-ot-shape-closure.exe +0 -0
  36. data/vendor/local/bin/hb-shape.exe +0 -0
  37. data/vendor/local/bin/hb-view.exe +0 -0
  38. data/vendor/local/bin/libharfbuzz-0.dll +0 -0
  39. data/vendor/local/bin/libpango-1.0-0.dll +0 -0
  40. data/vendor/local/bin/libpangocairo-1.0-0.dll +0 -0
  41. data/vendor/local/bin/libpangoft2-1.0-0.dll +0 -0
  42. data/vendor/local/bin/libpangowin32-1.0-0.dll +0 -0
  43. data/vendor/local/bin/libstdc++-6.dll +0 -0
  44. data/vendor/local/bin/pango-querymodules.exe +0 -0
  45. data/vendor/local/bin/pango-view.exe +0 -0
  46. data/vendor/local/include/harfbuzz/hb-buffer.h +10 -10
  47. data/vendor/local/include/harfbuzz/hb-common.h +147 -131
  48. data/vendor/local/include/harfbuzz/{hb-uniscribe.h → hb-deprecated.h} +15 -13
  49. data/vendor/local/include/harfbuzz/hb-face.h +117 -0
  50. data/vendor/local/include/harfbuzz/hb-font.h +130 -77
  51. data/vendor/local/include/harfbuzz/hb-ot-layout.h +6 -0
  52. data/vendor/local/include/harfbuzz/hb-set.h +2 -0
  53. data/vendor/local/include/harfbuzz/hb-unicode.h +97 -9
  54. data/vendor/local/include/harfbuzz/hb-version.h +2 -2
  55. data/vendor/local/include/harfbuzz/hb.h +2 -0
  56. data/vendor/local/include/pango-1.0/pango/pango-attributes.h +213 -4
  57. data/vendor/local/include/pango-1.0/pango/pango-break.h +53 -0
  58. data/vendor/local/include/pango-1.0/pango/pango-coverage.h +21 -0
  59. data/vendor/local/include/pango-1.0/pango/pango-engine.h +46 -0
  60. data/vendor/local/include/pango-1.0/pango/pango-features.h +2 -2
  61. data/vendor/local/include/pango-1.0/pango/pango-font.h +234 -0
  62. data/vendor/local/include/pango-1.0/pango/pango-fontmap.h +68 -0
  63. data/vendor/local/include/pango-1.0/pango/pango-fontset.h +42 -0
  64. data/vendor/local/include/pango-1.0/pango/pango-glyph-item.h +64 -0
  65. data/vendor/local/include/pango-1.0/pango/pango-glyph.h +55 -0
  66. data/vendor/local/include/pango-1.0/pango/pango-item.h +28 -0
  67. data/vendor/local/include/pango-1.0/pango/pango-language.h +5 -0
  68. data/vendor/local/include/pango-1.0/pango/pango-layout.h +43 -0
  69. data/vendor/local/include/pango-1.0/pango/pango-modules.h +11 -0
  70. data/vendor/local/include/pango-1.0/pango/pango-ot.h +149 -0
  71. data/vendor/local/include/pango-1.0/pango/pango-script.h +102 -0
  72. data/vendor/local/include/pango-1.0/pango/pango-tabs.h +11 -0
  73. data/vendor/local/include/pango-1.0/pango/pango-types.h +102 -2
  74. data/vendor/local/include/pango-1.0/pango/pango-utils.h +44 -0
  75. data/vendor/local/include/pango-1.0/pango/pangocairo.h +14 -0
  76. data/vendor/local/include/pango-1.0/pango/pangofc-fontmap.h +2 -2
  77. data/vendor/local/include/pango-1.0/pango/pangoft2.h +13 -0
  78. data/vendor/local/include/pango-1.0/pango/pangowin32.h +6 -0
  79. data/vendor/local/lib/girepository-1.0/Pango-1.0.typelib +0 -0
  80. data/vendor/local/lib/girepository-1.0/PangoCairo-1.0.typelib +0 -0
  81. data/vendor/local/lib/libharfbuzz.dll.a +0 -0
  82. data/vendor/local/lib/libharfbuzz.la +5 -5
  83. data/vendor/local/lib/libpango-1.0.dll.a +0 -0
  84. data/vendor/local/lib/libpango-1.0.la +2 -2
  85. data/vendor/local/lib/libpangocairo-1.0.dll.a +0 -0
  86. data/vendor/local/lib/libpangocairo-1.0.la +4 -4
  87. data/vendor/local/lib/libpangoft2-1.0.dll.a +0 -0
  88. data/vendor/local/lib/libpangoft2-1.0.la +3 -3
  89. data/vendor/local/lib/libpangowin32-1.0.dll.a +0 -0
  90. data/vendor/local/lib/libpangowin32-1.0.la +2 -2
  91. data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.dll +0 -0
  92. data/vendor/local/lib/pango/1.8.0/modules/pango-arabic-lang.dll.a +0 -0
  93. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.dll +0 -0
  94. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.dll.a +0 -0
  95. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-fc.la +1 -1
  96. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.dll +0 -0
  97. data/vendor/local/lib/pango/1.8.0/modules/pango-basic-win32.dll.a +0 -0
  98. data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.dll +0 -0
  99. data/vendor/local/lib/pango/1.8.0/modules/pango-indic-lang.dll.a +0 -0
  100. data/vendor/local/lib/pkgconfig/harfbuzz.pc +5 -5
  101. data/vendor/local/lib/pkgconfig/pango.pc +1 -1
  102. data/vendor/local/lib/pkgconfig/pangocairo.pc +1 -1
  103. data/vendor/local/lib/pkgconfig/pangoft2.pc +1 -1
  104. data/vendor/local/lib/pkgconfig/pangowin32.pc +1 -1
  105. data/vendor/local/share/gir-1.0/Pango-1.0.gir +1824 -1434
  106. data/vendor/local/share/gir-1.0/PangoCairo-1.0.gir +109 -103
  107. data/vendor/local/share/gir-1.0/PangoFT2-1.0.gir +18 -15
  108. data/vendor/local/share/gtk-doc/html/harfbuzz/annotation-glossary.html +71 -0
  109. data/vendor/local/share/gtk-doc/html/harfbuzz/api-index-full.html +1419 -0
  110. data/vendor/local/share/gtk-doc/html/harfbuzz/ch01.html +98 -0
  111. data/vendor/local/share/gtk-doc/html/harfbuzz/deprecated-api-index.html +48 -0
  112. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-blob.html +415 -0
  113. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-buffer.html +1045 -0
  114. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-common.html +1073 -0
  115. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-coretext.html +67 -0
  116. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-deprecated.html +90 -0
  117. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-face.html +344 -0
  118. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-font.html +1617 -0
  119. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ft.html +130 -0
  120. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-glib.html +75 -0
  121. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-gobject.html +52 -0
  122. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-graphite2.html +76 -0
  123. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-icu.html +75 -0
  124. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-layout.html +544 -0
  125. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-tag.html +105 -0
  126. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot.html +67 -0
  127. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-set.html +540 -0
  128. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape-plan.html +264 -0
  129. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape.html +194 -0
  130. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-unicode.html +1180 -0
  131. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-uniscribe.html +67 -0
  132. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb-version.html +156 -0
  133. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz-hb.html +52 -0
  134. data/vendor/local/share/gtk-doc/html/harfbuzz/harfbuzz.devhelp2 +591 -0
  135. data/vendor/local/share/gtk-doc/html/harfbuzz/home.png +0 -0
  136. data/vendor/local/share/gtk-doc/html/harfbuzz/index.html +105 -0
  137. data/vendor/local/share/gtk-doc/html/harfbuzz/index.sgml +650 -0
  138. data/vendor/local/share/gtk-doc/html/harfbuzz/left-insensitive.png +0 -0
  139. data/vendor/local/share/gtk-doc/html/harfbuzz/left.png +0 -0
  140. data/vendor/local/share/gtk-doc/html/harfbuzz/object-tree.html +32 -0
  141. data/vendor/local/share/gtk-doc/html/harfbuzz/right-insensitive.png +0 -0
  142. data/vendor/local/share/gtk-doc/html/harfbuzz/right.png +0 -0
  143. data/vendor/local/share/gtk-doc/html/harfbuzz/style.css +321 -0
  144. data/vendor/local/share/gtk-doc/html/harfbuzz/up-insensitive.png +0 -0
  145. data/vendor/local/share/gtk-doc/html/harfbuzz/up.png +0 -0
  146. data/vendor/local/share/gtk-doc/html/pango/PangoEngineLang.html +3 -4
  147. data/vendor/local/share/gtk-doc/html/pango/PangoEngineShape.html +3 -4
  148. data/vendor/local/share/gtk-doc/html/pango/PangoFcDecoder.html +2 -2
  149. data/vendor/local/share/gtk-doc/html/pango/PangoFcFont.html +4 -9
  150. data/vendor/local/share/gtk-doc/html/pango/PangoFcFontMap.html +8 -13
  151. data/vendor/local/share/gtk-doc/html/pango/PangoMarkupFormat.html +2 -2
  152. data/vendor/local/share/gtk-doc/html/pango/{pango-pango-renderer.html → PangoRenderer.html} +99 -102
  153. data/vendor/local/share/gtk-doc/html/pango/annotation-glossary.html +20 -29
  154. data/vendor/local/share/gtk-doc/html/pango/api-index-1-10.html +2 -2
  155. data/vendor/local/share/gtk-doc/html/pango/api-index-1-12.html +2 -2
  156. data/vendor/local/share/gtk-doc/html/pango/api-index-1-14.html +2 -2
  157. data/vendor/local/share/gtk-doc/html/pango/api-index-1-16.html +6 -2
  158. data/vendor/local/share/gtk-doc/html/pango/api-index-1-18.html +2 -2
  159. data/vendor/local/share/gtk-doc/html/pango/api-index-1-2.html +2 -2
  160. data/vendor/local/share/gtk-doc/html/pango/api-index-1-20.html +4 -11
  161. data/vendor/local/share/gtk-doc/html/pango/api-index-1-22.html +3 -3
  162. data/vendor/local/share/gtk-doc/html/pango/api-index-1-24.html +15 -4
  163. data/vendor/local/share/gtk-doc/html/pango/api-index-1-26.html +4 -4
  164. data/vendor/local/share/gtk-doc/html/pango/api-index-1-30.html +6 -6
  165. data/vendor/local/share/gtk-doc/html/pango/api-index-1-31-0.html +42 -0
  166. data/vendor/local/share/gtk-doc/html/pango/api-index-1-32-4.html +58 -0
  167. data/vendor/local/share/gtk-doc/html/pango/api-index-1-32.html +6 -5
  168. data/vendor/local/share/gtk-doc/html/pango/api-index-1-34.html +41 -0
  169. data/vendor/local/share/gtk-doc/html/pango/api-index-1-4.html +2 -2
  170. data/vendor/local/share/gtk-doc/html/pango/api-index-1-6.html +2 -2
  171. data/vendor/local/share/gtk-doc/html/pango/api-index-1-8.html +19 -19
  172. data/vendor/local/share/gtk-doc/html/pango/api-index-deprecated.html +2 -2
  173. data/vendor/local/share/gtk-doc/html/pango/api-index-full.html +31 -27
  174. data/vendor/local/share/gtk-doc/html/pango/index.html +7 -5
  175. data/vendor/local/share/gtk-doc/html/pango/index.sgml +38 -38
  176. data/vendor/local/share/gtk-doc/html/pango/lowlevel.html +5 -5
  177. data/vendor/local/share/gtk-doc/html/pango/pango-Bidirectional-Text.html +6 -9
  178. data/vendor/local/share/gtk-doc/html/pango/pango-Cairo-Rendering.html +113 -66
  179. data/vendor/local/share/gtk-doc/html/pango/pango-CoreText-Fonts.html +2 -2
  180. data/vendor/local/share/gtk-doc/html/pango/pango-Coverage-Maps.html +8 -12
  181. data/vendor/local/share/gtk-doc/html/pango/pango-Engines.html +5 -8
  182. data/vendor/local/share/gtk-doc/html/pango/pango-Fonts.html +90 -53
  183. data/vendor/local/share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html +10 -10
  184. data/vendor/local/share/gtk-doc/html/pango/pango-Glyph-Storage.html +21 -8
  185. data/vendor/local/share/gtk-doc/html/pango/pango-Layout-Objects.html +44 -15
  186. data/vendor/local/share/gtk-doc/html/pango/pango-Miscellaneous-Utilities.html +2 -2
  187. data/vendor/local/share/gtk-doc/html/pango/pango-Modules.html +2 -2
  188. data/vendor/local/share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html +12 -12
  189. data/vendor/local/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html +87 -90
  190. data/vendor/local/share/gtk-doc/html/pango/pango-Tab-Stops.html +2 -5
  191. data/vendor/local/share/gtk-doc/html/pango/pango-Text-Attributes.html +38 -31
  192. data/vendor/local/share/gtk-doc/html/pango/pango-Text-Processing.html +10 -18
  193. data/vendor/local/share/gtk-doc/html/pango/pango-Version-Checking.html +10 -11
  194. data/vendor/local/share/gtk-doc/html/pango/pango-Vertical-Text.html +4 -6
  195. data/vendor/local/share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html +3 -4
  196. data/vendor/local/share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html +12 -12
  197. data/vendor/local/share/gtk-doc/html/pango/pango-hierarchy.html +4 -4
  198. data/vendor/local/share/gtk-doc/html/pango/pango-querymodules.html +2 -2
  199. data/vendor/local/share/gtk-doc/html/pango/pango.devhelp2 +34 -31
  200. data/vendor/local/share/gtk-doc/html/pango/pango.html +2 -2
  201. data/vendor/local/share/gtk-doc/html/pango/rendering.html +2 -2
  202. data/vendor/local/share/gtk-doc/html/pango/tools.html +2 -2
  203. data/vendor/local/share/man/man1/pango-querymodules.1 +2 -2
  204. data/vendor/local/share/man/man1/pango-view.1 +2 -2
  205. metadata +57 -24
  206. data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
  207. data/vendor/local/include/harfbuzz/hb-gobject.h +0 -69
  208. data/vendor/local/share/gtk-doc/html/pango/api-index-1-28.html +0 -31
@@ -0,0 +1,1617 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>hb-font</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
7
+ <link rel="home" href="index.html" title="HarfBuzz Reference Manual">
8
+ <link rel="up" href="ch01.html" title="[Insert title here]">
9
+ <link rel="prev" href="harfbuzz-hb-face.html" title="hb-face">
10
+ <link rel="next" href="harfbuzz-hb-shape.html" title="hb-shape">
11
+ <meta name="generator" content="GTK-Doc V1.19.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
16
+ <td width="100%" align="left">
17
+ <a href="#" class="shortcut">Top</a>
18
+  | 
19
+ <a href="#harfbuzz-hb-font.description" class="shortcut">Description</a>
20
+ </td>
21
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22
+ <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23
+ <td><a accesskey="p" href="harfbuzz-hb-face.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24
+ <td><a accesskey="n" href="harfbuzz-hb-shape.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25
+ </tr></table>
26
+ <div class="refentry">
27
+ <a name="harfbuzz-hb-font"></a><div class="titlepage"></div>
28
+ <div class="refnamediv"><table width="100%"><tr>
29
+ <td valign="top">
30
+ <h2><span class="refentrytitle"><a name="harfbuzz-hb-font.top_of_page"></a>hb-font</span></h2>
31
+ <p>hb-font</p>
32
+ </td>
33
+ <td valign="top" align="right"></td>
34
+ </tr></table></div>
35
+ <div class="refsynopsisdiv">
36
+ <a name="harfbuzz-hb-font.synopsis"></a><h2>Synopsis</h2>
37
+ <pre class="synopsis"><span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-add-glyph-origin-for-direction" title="hb_font_add_glyph_origin_for_direction ()">hb_font_add_glyph_origin_for_direction</a>
38
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
39
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
40
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-direction-t" title="enum hb_direction_t"><span class="type">hb_direction_t</span></a> direction</code></em>,
41
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
42
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);
43
+ <a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="returnvalue">hb_font_t</span></a> * <a class="link" href="harfbuzz-hb-font.html#hb-font-create" title="hb_font_create ()">hb_font_create</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-face.html#hb-face-t" title="hb_face_t"><span class="type">hb_face_t</span></a> *face</code></em>);
44
+ <a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="returnvalue">hb_font_t</span></a> * <a class="link" href="harfbuzz-hb-font.html#hb-font-create-sub-font" title="hb_font_create_sub_font ()">hb_font_create_sub_font</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *parent</code></em>);
45
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-destroy" title="hb_font_destroy ()">hb_font_destroy</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>);
46
+ <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="returnvalue">hb_font_funcs_t</span></a> * <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-create" title="hb_font_funcs_create ()">hb_font_funcs_create</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
47
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-destroy" title="hb_font_funcs_destroy ()">hb_font_funcs_destroy</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>);
48
+ <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="returnvalue">hb_font_funcs_t</span></a> * <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-get-empty" title="hb_font_funcs_get_empty ()">hb_font_funcs_get_empty</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
49
+ <span class="returnvalue">void</span> * <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-get-user-data" title="hb_font_funcs_get_user_data ()">hb_font_funcs_get_user_data</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
50
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-user-data-key-t" title="hb_user_data_key_t"><span class="type">hb_user_data_key_t</span></a> *key</code></em>);
51
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-is-immutable" title="hb_font_funcs_is_immutable ()">hb_font_funcs_is_immutable</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>);
52
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-make-immutable" title="hb_font_funcs_make_immutable ()">hb_font_funcs_make_immutable</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>);
53
+ <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="returnvalue">hb_font_funcs_t</span></a> * <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-reference" title="hb_font_funcs_reference ()">hb_font_funcs_reference</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>);
54
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-set-glyph-contour-point-func" title="hb_font_funcs_set_glyph_contour_point_func ()">hb_font_funcs_set_glyph_contour_point_func</a>
55
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
56
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-contour-point-func-t" title="hb_font_get_glyph_contour_point_func_t ()"><span class="type">hb_font_get_glyph_contour_point_func_t</span></a> func</code></em>,
57
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
58
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);
59
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-set-glyph-extents-func" title="hb_font_funcs_set_glyph_extents_func ()">hb_font_funcs_set_glyph_extents_func</a>
60
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
61
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-extents-func-t" title="hb_font_get_glyph_extents_func_t ()"><span class="type">hb_font_get_glyph_extents_func_t</span></a> func</code></em>,
62
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
63
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);
64
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-set-glyph-from-name-func" title="hb_font_funcs_set_glyph_from_name_func ()">hb_font_funcs_set_glyph_from_name_func</a>
65
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
66
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-from-name-func-t" title="hb_font_get_glyph_from_name_func_t ()"><span class="type">hb_font_get_glyph_from_name_func_t</span></a> func</code></em>,
67
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
68
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);
69
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-set-glyph-func" title="hb_font_funcs_set_glyph_func ()">hb_font_funcs_set_glyph_func</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
70
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-func-t" title="hb_font_get_glyph_func_t ()"><span class="type">hb_font_get_glyph_func_t</span></a> func</code></em>,
71
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
72
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);
73
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-set-glyph-h-advance-func" title="hb_font_funcs_set_glyph_h_advance_func ()">hb_font_funcs_set_glyph_h_advance_func</a>
74
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
75
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-h-advance-func-t" title="hb_font_get_glyph_h_advance_func_t"><span class="type">hb_font_get_glyph_h_advance_func_t</span></a> func</code></em>,
76
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
77
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);
78
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-set-glyph-h-kerning-func" title="hb_font_funcs_set_glyph_h_kerning_func ()">hb_font_funcs_set_glyph_h_kerning_func</a>
79
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
80
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-h-kerning-func-t" title="hb_font_get_glyph_h_kerning_func_t"><span class="type">hb_font_get_glyph_h_kerning_func_t</span></a> func</code></em>,
81
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
82
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);
83
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-set-glyph-h-origin-func" title="hb_font_funcs_set_glyph_h_origin_func ()">hb_font_funcs_set_glyph_h_origin_func</a>
84
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
85
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-h-origin-func-t" title="hb_font_get_glyph_h_origin_func_t"><span class="type">hb_font_get_glyph_h_origin_func_t</span></a> func</code></em>,
86
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
87
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);
88
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-set-glyph-name-func" title="hb_font_funcs_set_glyph_name_func ()">hb_font_funcs_set_glyph_name_func</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
89
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-name-func-t" title="hb_font_get_glyph_name_func_t ()"><span class="type">hb_font_get_glyph_name_func_t</span></a> func</code></em>,
90
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
91
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);
92
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-set-glyph-v-advance-func" title="hb_font_funcs_set_glyph_v_advance_func ()">hb_font_funcs_set_glyph_v_advance_func</a>
93
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
94
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-v-advance-func-t" title="hb_font_get_glyph_v_advance_func_t"><span class="type">hb_font_get_glyph_v_advance_func_t</span></a> func</code></em>,
95
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
96
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);
97
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-set-glyph-v-kerning-func" title="hb_font_funcs_set_glyph_v_kerning_func ()">hb_font_funcs_set_glyph_v_kerning_func</a>
98
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
99
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-v-kerning-func-t" title="hb_font_get_glyph_v_kerning_func_t"><span class="type">hb_font_get_glyph_v_kerning_func_t</span></a> func</code></em>,
100
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
101
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);
102
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-set-glyph-v-origin-func" title="hb_font_funcs_set_glyph_v_origin_func ()">hb_font_funcs_set_glyph_v_origin_func</a>
103
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
104
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-v-origin-func-t" title="hb_font_get_glyph_v_origin_func_t"><span class="type">hb_font_get_glyph_v_origin_func_t</span></a> func</code></em>,
105
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
106
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);
107
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-set-user-data" title="hb_font_funcs_set_user_data ()">hb_font_funcs_set_user_data</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
108
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-user-data-key-t" title="hb_user_data_key_t"><span class="type">hb_user_data_key_t</span></a> *key</code></em>,
109
+ <em class="parameter"><code><span class="type">void</span> *data</code></em>,
110
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>,
111
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="type">hb_bool_t</span></a> replace</code></em>);
112
+ typedef <a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t">hb_font_funcs_t</a>;
113
+ <a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="returnvalue">hb_font_t</span></a> * <a class="link" href="harfbuzz-hb-font.html#hb-font-get-empty" title="hb_font_get_empty ()">hb_font_get_empty</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
114
+ <a class="link" href="harfbuzz-hb-face.html#hb-face-t" title="hb_face_t"><span class="returnvalue">hb_face_t</span></a> * <a class="link" href="harfbuzz-hb-font.html#hb-font-get-face" title="hb_font_get_face ()">hb_font_get_face</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>);
115
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph" title="hb_font_get_glyph ()">hb_font_get_glyph</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
116
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> unicode</code></em>,
117
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> variation_selector</code></em>,
118
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> *glyph</code></em>);
119
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-advance-for-direction" title="hb_font_get_glyph_advance_for_direction ()">hb_font_get_glyph_advance_for_direction</a>
120
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
121
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
122
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-direction-t" title="enum hb_direction_t"><span class="type">hb_direction_t</span></a> direction</code></em>,
123
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
124
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);
125
+ <a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="returnvalue">hb_position_t</span></a> (<a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-advance-func-t" title="hb_font_get_glyph_advance_func_t ()">*hb_font_get_glyph_advance_func_t</a>) (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
126
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
127
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
128
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);
129
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-contour-point" title="hb_font_get_glyph_contour_point ()">hb_font_get_glyph_contour_point</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
130
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
131
+ <em class="parameter"><code>unsigned <span class="type">int</span> point_index</code></em>,
132
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
133
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);
134
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-contour-point-for-origin" title="hb_font_get_glyph_contour_point_for_origin ()">hb_font_get_glyph_contour_point_for_origin</a>
135
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
136
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
137
+ <em class="parameter"><code>unsigned <span class="type">int</span> point_index</code></em>,
138
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-direction-t" title="enum hb_direction_t"><span class="type">hb_direction_t</span></a> direction</code></em>,
139
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
140
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);
141
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> (<a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-contour-point-func-t" title="hb_font_get_glyph_contour_point_func_t ()">*hb_font_get_glyph_contour_point_func_t</a>)
142
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
143
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
144
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
145
+ <em class="parameter"><code>unsigned <span class="type">int</span> point_index</code></em>,
146
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
147
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>,
148
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);
149
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-extents" title="hb_font_get_glyph_extents ()">hb_font_get_glyph_extents</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
150
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
151
+ <em class="parameter"><code><span class="type">hb_glyph_extents_t</span> *extents</code></em>);
152
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-extents-for-origin" title="hb_font_get_glyph_extents_for_origin ()">hb_font_get_glyph_extents_for_origin</a>
153
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
154
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
155
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-direction-t" title="enum hb_direction_t"><span class="type">hb_direction_t</span></a> direction</code></em>,
156
+ <em class="parameter"><code><span class="type">hb_glyph_extents_t</span> *extents</code></em>);
157
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> (<a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-extents-func-t" title="hb_font_get_glyph_extents_func_t ()">*hb_font_get_glyph_extents_func_t</a>) (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
158
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
159
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
160
+ <em class="parameter"><code><span class="type">hb_glyph_extents_t</span> *extents</code></em>,
161
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);
162
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-from-name" title="hb_font_get_glyph_from_name ()">hb_font_get_glyph_from_name</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
163
+ <em class="parameter"><code>const <span class="type">char</span> *name</code></em>,
164
+ <em class="parameter"><code><span class="type">int</span> len</code></em>,
165
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> *glyph</code></em>);
166
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> (<a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-from-name-func-t" title="hb_font_get_glyph_from_name_func_t ()">*hb_font_get_glyph_from_name_func_t</a>)
167
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
168
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
169
+ <em class="parameter"><code>const <span class="type">char</span> *name</code></em>,
170
+ <em class="parameter"><code><span class="type">int</span> len</code></em>);
171
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> (<a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-func-t" title="hb_font_get_glyph_func_t ()">*hb_font_get_glyph_func_t</a>) (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
172
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
173
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> unicode</code></em>,
174
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> variation_selector</code></em>,
175
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> *glyph</code></em>,
176
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);
177
+ <a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="returnvalue">hb_position_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-h-advance" title="hb_font_get_glyph_h_advance ()">hb_font_get_glyph_h_advance</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
178
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>);
179
+ typedef <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-h-advance-func-t" title="hb_font_get_glyph_h_advance_func_t">hb_font_get_glyph_h_advance_func_t</a>;
180
+ <a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="returnvalue">hb_position_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-h-kerning" title="hb_font_get_glyph_h_kerning ()">hb_font_get_glyph_h_kerning</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
181
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> left_glyph</code></em>,
182
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> right_glyph</code></em>);
183
+ typedef <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-h-kerning-func-t" title="hb_font_get_glyph_h_kerning_func_t">hb_font_get_glyph_h_kerning_func_t</a>;
184
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-h-origin" title="hb_font_get_glyph_h_origin ()">hb_font_get_glyph_h_origin</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
185
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
186
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
187
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);
188
+ typedef <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-h-origin-func-t" title="hb_font_get_glyph_h_origin_func_t">hb_font_get_glyph_h_origin_func_t</a>;
189
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-kerning-for-direction" title="hb_font_get_glyph_kerning_for_direction ()">hb_font_get_glyph_kerning_for_direction</a>
190
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
191
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> first_glyph</code></em>,
192
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> second_glyph</code></em>,
193
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-direction-t" title="enum hb_direction_t"><span class="type">hb_direction_t</span></a> direction</code></em>,
194
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
195
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);
196
+ <a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="returnvalue">hb_position_t</span></a> (<a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-kerning-func-t" title="hb_font_get_glyph_kerning_func_t ()">*hb_font_get_glyph_kerning_func_t</a>) (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
197
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
198
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> first_glyph</code></em>,
199
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> second_glyph</code></em>,
200
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);
201
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-name" title="hb_font_get_glyph_name ()">hb_font_get_glyph_name</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
202
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
203
+ <em class="parameter"><code><span class="type">char</span> *name</code></em>,
204
+ <em class="parameter"><code>unsigned <span class="type">int</span> size</code></em>);
205
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> (<a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-name-func-t" title="hb_font_get_glyph_name_func_t ()">*hb_font_get_glyph_name_func_t</a>) (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
206
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
207
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
208
+ <em class="parameter"><code><span class="type">char</span> *name</code></em>,
209
+ <em class="parameter"><code>unsigned <span class="type">int</span> size</code></em>,
210
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);
211
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-origin-for-direction" title="hb_font_get_glyph_origin_for_direction ()">hb_font_get_glyph_origin_for_direction</a>
212
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
213
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
214
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-direction-t" title="enum hb_direction_t"><span class="type">hb_direction_t</span></a> direction</code></em>,
215
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
216
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);
217
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> (<a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-origin-func-t" title="hb_font_get_glyph_origin_func_t ()">*hb_font_get_glyph_origin_func_t</a>) (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
218
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
219
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
220
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
221
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>,
222
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);
223
+ <a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="returnvalue">hb_position_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-v-advance" title="hb_font_get_glyph_v_advance ()">hb_font_get_glyph_v_advance</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
224
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>);
225
+ typedef <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-v-advance-func-t" title="hb_font_get_glyph_v_advance_func_t">hb_font_get_glyph_v_advance_func_t</a>;
226
+ <a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="returnvalue">hb_position_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-v-kerning" title="hb_font_get_glyph_v_kerning ()">hb_font_get_glyph_v_kerning</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
227
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> top_glyph</code></em>,
228
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> bottom_glyph</code></em>);
229
+ typedef <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-v-kerning-func-t" title="hb_font_get_glyph_v_kerning_func_t">hb_font_get_glyph_v_kerning_func_t</a>;
230
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-v-origin" title="hb_font_get_glyph_v_origin ()">hb_font_get_glyph_v_origin</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
231
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
232
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
233
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);
234
+ typedef <a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-v-origin-func-t" title="hb_font_get_glyph_v_origin_func_t">hb_font_get_glyph_v_origin_func_t</a>;
235
+ <a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="returnvalue">hb_font_t</span></a> * <a class="link" href="harfbuzz-hb-font.html#hb-font-get-parent" title="hb_font_get_parent ()">hb_font_get_parent</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>);
236
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-ppem" title="hb_font_get_ppem ()">hb_font_get_ppem</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
237
+ <em class="parameter"><code>unsigned <span class="type">int</span> *x_ppem</code></em>,
238
+ <em class="parameter"><code>unsigned <span class="type">int</span> *y_ppem</code></em>);
239
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-get-scale" title="hb_font_get_scale ()">hb_font_get_scale</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
240
+ <em class="parameter"><code><span class="type">int</span> *x_scale</code></em>,
241
+ <em class="parameter"><code><span class="type">int</span> *y_scale</code></em>);
242
+ <span class="returnvalue">void</span> * <a class="link" href="harfbuzz-hb-font.html#hb-font-get-user-data" title="hb_font_get_user_data ()">hb_font_get_user_data</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
243
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-user-data-key-t" title="hb_user_data_key_t"><span class="type">hb_user_data_key_t</span></a> *key</code></em>);
244
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-glyph-from-string" title="hb_font_glyph_from_string ()">hb_font_glyph_from_string</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
245
+ <em class="parameter"><code>const <span class="type">char</span> *s</code></em>,
246
+ <em class="parameter"><code><span class="type">int</span> len</code></em>,
247
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> *glyph</code></em>);
248
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-glyph-to-string" title="hb_font_glyph_to_string ()">hb_font_glyph_to_string</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
249
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
250
+ <em class="parameter"><code><span class="type">char</span> *s</code></em>,
251
+ <em class="parameter"><code>unsigned <span class="type">int</span> size</code></em>);
252
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-is-immutable" title="hb_font_is_immutable ()">hb_font_is_immutable</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>);
253
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-make-immutable" title="hb_font_make_immutable ()">hb_font_make_immutable</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>);
254
+ <a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="returnvalue">hb_font_t</span></a> * <a class="link" href="harfbuzz-hb-font.html#hb-font-reference" title="hb_font_reference ()">hb_font_reference</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>);
255
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-set-funcs" title="hb_font_set_funcs ()">hb_font_set_funcs</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
256
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *klass</code></em>,
257
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
258
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);
259
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-set-funcs-data" title="hb_font_set_funcs_data ()">hb_font_set_funcs_data</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
260
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
261
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);
262
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-set-ppem" title="hb_font_set_ppem ()">hb_font_set_ppem</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
263
+ <em class="parameter"><code>unsigned <span class="type">int</span> x_ppem</code></em>,
264
+ <em class="parameter"><code>unsigned <span class="type">int</span> y_ppem</code></em>);
265
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-set-scale" title="hb_font_set_scale ()">hb_font_set_scale</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
266
+ <em class="parameter"><code><span class="type">int</span> x_scale</code></em>,
267
+ <em class="parameter"><code><span class="type">int</span> y_scale</code></em>);
268
+ <a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> <a class="link" href="harfbuzz-hb-font.html#hb-font-set-user-data" title="hb_font_set_user_data ()">hb_font_set_user_data</a> (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
269
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-user-data-key-t" title="hb_user_data_key_t"><span class="type">hb_user_data_key_t</span></a> *key</code></em>,
270
+ <em class="parameter"><code><span class="type">void</span> *data</code></em>,
271
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>,
272
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="type">hb_bool_t</span></a> replace</code></em>);
273
+ <span class="returnvalue">void</span> <a class="link" href="harfbuzz-hb-font.html#hb-font-subtract-glyph-origin-for-direction" title="hb_font_subtract_glyph_origin_for_direction ()">hb_font_subtract_glyph_origin_for_direction</a>
274
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
275
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
276
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-direction-t" title="enum hb_direction_t"><span class="type">hb_direction_t</span></a> direction</code></em>,
277
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
278
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);
279
+ typedef <a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t">hb_font_t</a>;
280
+ <a class="link" href="harfbuzz-hb-blob.html#hb-blob-t" title="hb_blob_t"><span class="returnvalue">hb_blob_t</span></a> * (<a class="link" href="harfbuzz-hb-font.html#hb-reference-table-func-t" title="hb_reference_table_func_t ()">*hb_reference_table_func_t</a>) (<em class="parameter"><code><a class="link" href="harfbuzz-hb-face.html#hb-face-t" title="hb_face_t"><span class="type">hb_face_t</span></a> *face</code></em>,
281
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-tag-t" title="hb_tag_t"><span class="type">hb_tag_t</span></a> tag</code></em>,
282
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);
283
+ </pre>
284
+ </div>
285
+ <div class="refsect1">
286
+ <a name="harfbuzz-hb-font.description"></a><h2>Description</h2>
287
+ <p>
288
+ </p>
289
+ </div>
290
+ <div class="refsect1">
291
+ <a name="harfbuzz-hb-font.details"></a><h2>Details</h2>
292
+ <div class="refsect2">
293
+ <a name="hb-font-add-glyph-origin-for-direction"></a><h3>hb_font_add_glyph_origin_for_direction ()</h3>
294
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_add_glyph_origin_for_direction
295
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
296
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
297
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-direction-t" title="enum hb_direction_t"><span class="type">hb_direction_t</span></a> direction</code></em>,
298
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
299
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);</pre>
300
+ <div class="variablelist"><table border="0">
301
+ <col align="left" valign="top">
302
+ <tbody>
303
+ <tr>
304
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
305
+ <td>a font.</td>
306
+ </tr>
307
+ <tr>
308
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
309
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
310
+ </td>
311
+ </tr>
312
+ <tr>
313
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
314
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
315
+ </td>
316
+ </tr>
317
+ </tbody>
318
+ </table></div>
319
+ <p class="since">Since 1.0</p>
320
+ </div>
321
+ <hr>
322
+ <div class="refsect2">
323
+ <a name="hb-font-create"></a><h3>hb_font_create ()</h3>
324
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="returnvalue">hb_font_t</span></a> * hb_font_create (<em class="parameter"><code><a class="link" href="harfbuzz-hb-face.html#hb-face-t" title="hb_face_t"><span class="type">hb_face_t</span></a> *face</code></em>);</pre>
325
+ <p>
326
+ </p>
327
+ </div>
328
+ <hr>
329
+ <div class="refsect2">
330
+ <a name="hb-font-create-sub-font"></a><h3>hb_font_create_sub_font ()</h3>
331
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="returnvalue">hb_font_t</span></a> * hb_font_create_sub_font (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *parent</code></em>);</pre>
332
+ <div class="variablelist"><table border="0">
333
+ <col align="left" valign="top">
334
+ <tbody>
335
+ <tr>
336
+ <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
337
+ <td>parent font.</td>
338
+ </tr>
339
+ <tr>
340
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
341
+ <td>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
342
+ </td>
343
+ </tr>
344
+ </tbody>
345
+ </table></div>
346
+ <p class="since">Since 1.0</p>
347
+ </div>
348
+ <hr>
349
+ <div class="refsect2">
350
+ <a name="hb-font-destroy"></a><h3>hb_font_destroy ()</h3>
351
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_destroy (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>);</pre>
352
+ <div class="variablelist"><table border="0">
353
+ <col align="left" valign="top">
354
+ <tbody><tr>
355
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
356
+ <td>a font.</td>
357
+ </tr></tbody>
358
+ </table></div>
359
+ <p class="since">Since 1.0</p>
360
+ </div>
361
+ <hr>
362
+ <div class="refsect2">
363
+ <a name="hb-font-funcs-create"></a><h3>hb_font_funcs_create ()</h3>
364
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="returnvalue">hb_font_funcs_t</span></a> * hb_font_funcs_create (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
365
+ <p>
366
+ </p>
367
+ </div>
368
+ <hr>
369
+ <div class="refsect2">
370
+ <a name="hb-font-funcs-destroy"></a><h3>hb_font_funcs_destroy ()</h3>
371
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_funcs_destroy (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>);</pre>
372
+ <div class="variablelist"><table border="0">
373
+ <col align="left" valign="top">
374
+ <tbody><tr>
375
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
376
+ <td>font functions.</td>
377
+ </tr></tbody>
378
+ </table></div>
379
+ <p class="since">Since 1.0</p>
380
+ </div>
381
+ <hr>
382
+ <div class="refsect2">
383
+ <a name="hb-font-funcs-get-empty"></a><h3>hb_font_funcs_get_empty ()</h3>
384
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="returnvalue">hb_font_funcs_t</span></a> * hb_font_funcs_get_empty (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
385
+ <div class="variablelist"><table border="0">
386
+ <col align="left" valign="top">
387
+ <tbody><tr>
388
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
389
+ <td>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
390
+ </td>
391
+ </tr></tbody>
392
+ </table></div>
393
+ <p class="since">Since 1.0</p>
394
+ </div>
395
+ <hr>
396
+ <div class="refsect2">
397
+ <a name="hb-font-funcs-get-user-data"></a><h3>hb_font_funcs_get_user_data ()</h3>
398
+ <pre class="programlisting"><span class="returnvalue">void</span> * hb_font_funcs_get_user_data (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
399
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-user-data-key-t" title="hb_user_data_key_t"><span class="type">hb_user_data_key_t</span></a> *key</code></em>);</pre>
400
+ <div class="variablelist"><table border="0">
401
+ <col align="left" valign="top">
402
+ <tbody>
403
+ <tr>
404
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
405
+ <td>font functions.</td>
406
+ </tr>
407
+ <tr>
408
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
409
+ <td>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
410
+ </td>
411
+ </tr>
412
+ </tbody>
413
+ </table></div>
414
+ <p class="since">Since 1.0</p>
415
+ </div>
416
+ <hr>
417
+ <div class="refsect2">
418
+ <a name="hb-font-funcs-is-immutable"></a><h3>hb_font_funcs_is_immutable ()</h3>
419
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_font_funcs_is_immutable (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>);</pre>
420
+ <div class="variablelist"><table border="0">
421
+ <col align="left" valign="top">
422
+ <tbody><tr>
423
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
424
+ <td>font functions.</td>
425
+ </tr></tbody>
426
+ </table></div>
427
+ <p class="since">Since 1.0</p>
428
+ </div>
429
+ <hr>
430
+ <div class="refsect2">
431
+ <a name="hb-font-funcs-make-immutable"></a><h3>hb_font_funcs_make_immutable ()</h3>
432
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_funcs_make_immutable (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>);</pre>
433
+ <div class="variablelist"><table border="0">
434
+ <col align="left" valign="top">
435
+ <tbody><tr>
436
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
437
+ <td>font functions.</td>
438
+ </tr></tbody>
439
+ </table></div>
440
+ <p class="since">Since 1.0</p>
441
+ </div>
442
+ <hr>
443
+ <div class="refsect2">
444
+ <a name="hb-font-funcs-reference"></a><h3>hb_font_funcs_reference ()</h3>
445
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="returnvalue">hb_font_funcs_t</span></a> * hb_font_funcs_reference (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>);</pre>
446
+ <div class="variablelist"><table border="0">
447
+ <col align="left" valign="top">
448
+ <tbody><tr>
449
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
450
+ <td>font functions.</td>
451
+ </tr></tbody>
452
+ </table></div>
453
+ <p class="since">Since 1.0</p>
454
+ </div>
455
+ <hr>
456
+ <div class="refsect2">
457
+ <a name="hb-font-funcs-set-glyph-contour-point-func"></a><h3>hb_font_funcs_set_glyph_contour_point_func ()</h3>
458
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_funcs_set_glyph_contour_point_func
459
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
460
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-contour-point-func-t" title="hb_font_get_glyph_contour_point_func_t ()"><span class="type">hb_font_get_glyph_contour_point_func_t</span></a> func</code></em>,
461
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
462
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);</pre>
463
+ <div class="variablelist"><table border="0">
464
+ <col align="left" valign="top">
465
+ <tbody>
466
+ <tr>
467
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
468
+ <td>font functions.</td>
469
+ </tr>
470
+ <tr>
471
+ <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
472
+ <td>. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym> user_data][destroy destroy][<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span>
473
+ </td>
474
+ </tr>
475
+ </tbody>
476
+ </table></div>
477
+ <p class="since">Since 1.0</p>
478
+ </div>
479
+ <hr>
480
+ <div class="refsect2">
481
+ <a name="hb-font-funcs-set-glyph-extents-func"></a><h3>hb_font_funcs_set_glyph_extents_func ()</h3>
482
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_funcs_set_glyph_extents_func
483
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
484
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-extents-func-t" title="hb_font_get_glyph_extents_func_t ()"><span class="type">hb_font_get_glyph_extents_func_t</span></a> func</code></em>,
485
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
486
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);</pre>
487
+ <div class="variablelist"><table border="0">
488
+ <col align="left" valign="top">
489
+ <tbody>
490
+ <tr>
491
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
492
+ <td>font functions.</td>
493
+ </tr>
494
+ <tr>
495
+ <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
496
+ <td>. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym> user_data][destroy destroy][<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span>
497
+ </td>
498
+ </tr>
499
+ </tbody>
500
+ </table></div>
501
+ <p class="since">Since 1.0</p>
502
+ </div>
503
+ <hr>
504
+ <div class="refsect2">
505
+ <a name="hb-font-funcs-set-glyph-from-name-func"></a><h3>hb_font_funcs_set_glyph_from_name_func ()</h3>
506
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_funcs_set_glyph_from_name_func
507
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
508
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-from-name-func-t" title="hb_font_get_glyph_from_name_func_t ()"><span class="type">hb_font_get_glyph_from_name_func_t</span></a> func</code></em>,
509
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
510
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);</pre>
511
+ <div class="variablelist"><table border="0">
512
+ <col align="left" valign="top">
513
+ <tbody><tr>
514
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
515
+ <td>font functions.</td>
516
+ </tr></tbody>
517
+ </table></div>
518
+ <p class="since">Since 1.0</p>
519
+ </div>
520
+ <hr>
521
+ <div class="refsect2">
522
+ <a name="hb-font-funcs-set-glyph-func"></a><h3>hb_font_funcs_set_glyph_func ()</h3>
523
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_funcs_set_glyph_func (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
524
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-func-t" title="hb_font_get_glyph_func_t ()"><span class="type">hb_font_get_glyph_func_t</span></a> func</code></em>,
525
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
526
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);</pre>
527
+ <div class="variablelist"><table border="0">
528
+ <col align="left" valign="top">
529
+ <tbody><tr>
530
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
531
+ <td>font functions.</td>
532
+ </tr></tbody>
533
+ </table></div>
534
+ <p class="since">Since 1.0</p>
535
+ </div>
536
+ <hr>
537
+ <div class="refsect2">
538
+ <a name="hb-font-funcs-set-glyph-h-advance-func"></a><h3>hb_font_funcs_set_glyph_h_advance_func ()</h3>
539
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_funcs_set_glyph_h_advance_func
540
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
541
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-h-advance-func-t" title="hb_font_get_glyph_h_advance_func_t"><span class="type">hb_font_get_glyph_h_advance_func_t</span></a> func</code></em>,
542
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
543
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);</pre>
544
+ <div class="variablelist"><table border="0">
545
+ <col align="left" valign="top">
546
+ <tbody>
547
+ <tr>
548
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
549
+ <td>font functions.</td>
550
+ </tr>
551
+ <tr>
552
+ <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
553
+ <td>. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym> user_data][destroy destroy][<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span>
554
+ </td>
555
+ </tr>
556
+ </tbody>
557
+ </table></div>
558
+ <p class="since">Since 1.0</p>
559
+ </div>
560
+ <hr>
561
+ <div class="refsect2">
562
+ <a name="hb-font-funcs-set-glyph-h-kerning-func"></a><h3>hb_font_funcs_set_glyph_h_kerning_func ()</h3>
563
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_funcs_set_glyph_h_kerning_func
564
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
565
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-h-kerning-func-t" title="hb_font_get_glyph_h_kerning_func_t"><span class="type">hb_font_get_glyph_h_kerning_func_t</span></a> func</code></em>,
566
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
567
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);</pre>
568
+ <div class="variablelist"><table border="0">
569
+ <col align="left" valign="top">
570
+ <tbody>
571
+ <tr>
572
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
573
+ <td>font functions.</td>
574
+ </tr>
575
+ <tr>
576
+ <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
577
+ <td>. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym> user_data][destroy destroy][<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span>
578
+ </td>
579
+ </tr>
580
+ </tbody>
581
+ </table></div>
582
+ <p class="since">Since 1.0</p>
583
+ </div>
584
+ <hr>
585
+ <div class="refsect2">
586
+ <a name="hb-font-funcs-set-glyph-h-origin-func"></a><h3>hb_font_funcs_set_glyph_h_origin_func ()</h3>
587
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_funcs_set_glyph_h_origin_func
588
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
589
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-h-origin-func-t" title="hb_font_get_glyph_h_origin_func_t"><span class="type">hb_font_get_glyph_h_origin_func_t</span></a> func</code></em>,
590
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
591
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);</pre>
592
+ <div class="variablelist"><table border="0">
593
+ <col align="left" valign="top">
594
+ <tbody>
595
+ <tr>
596
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
597
+ <td>font functions.</td>
598
+ </tr>
599
+ <tr>
600
+ <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
601
+ <td>. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym> user_data][destroy destroy][<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span>
602
+ </td>
603
+ </tr>
604
+ </tbody>
605
+ </table></div>
606
+ <p class="since">Since 1.0</p>
607
+ </div>
608
+ <hr>
609
+ <div class="refsect2">
610
+ <a name="hb-font-funcs-set-glyph-name-func"></a><h3>hb_font_funcs_set_glyph_name_func ()</h3>
611
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_funcs_set_glyph_name_func (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
612
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-name-func-t" title="hb_font_get_glyph_name_func_t ()"><span class="type">hb_font_get_glyph_name_func_t</span></a> func</code></em>,
613
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
614
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);</pre>
615
+ <div class="variablelist"><table border="0">
616
+ <col align="left" valign="top">
617
+ <tbody><tr>
618
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
619
+ <td>font functions.</td>
620
+ </tr></tbody>
621
+ </table></div>
622
+ <p class="since">Since 1.0</p>
623
+ </div>
624
+ <hr>
625
+ <div class="refsect2">
626
+ <a name="hb-font-funcs-set-glyph-v-advance-func"></a><h3>hb_font_funcs_set_glyph_v_advance_func ()</h3>
627
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_funcs_set_glyph_v_advance_func
628
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
629
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-v-advance-func-t" title="hb_font_get_glyph_v_advance_func_t"><span class="type">hb_font_get_glyph_v_advance_func_t</span></a> func</code></em>,
630
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
631
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);</pre>
632
+ <div class="variablelist"><table border="0">
633
+ <col align="left" valign="top">
634
+ <tbody>
635
+ <tr>
636
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
637
+ <td>font functions.</td>
638
+ </tr>
639
+ <tr>
640
+ <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
641
+ <td>. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym> user_data][destroy destroy][<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span>
642
+ </td>
643
+ </tr>
644
+ </tbody>
645
+ </table></div>
646
+ <p class="since">Since 1.0</p>
647
+ </div>
648
+ <hr>
649
+ <div class="refsect2">
650
+ <a name="hb-font-funcs-set-glyph-v-kerning-func"></a><h3>hb_font_funcs_set_glyph_v_kerning_func ()</h3>
651
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_funcs_set_glyph_v_kerning_func
652
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
653
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-v-kerning-func-t" title="hb_font_get_glyph_v_kerning_func_t"><span class="type">hb_font_get_glyph_v_kerning_func_t</span></a> func</code></em>,
654
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
655
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);</pre>
656
+ <div class="variablelist"><table border="0">
657
+ <col align="left" valign="top">
658
+ <tbody>
659
+ <tr>
660
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
661
+ <td>font functions.</td>
662
+ </tr>
663
+ <tr>
664
+ <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
665
+ <td>. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym> user_data][destroy destroy][<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span>
666
+ </td>
667
+ </tr>
668
+ </tbody>
669
+ </table></div>
670
+ <p class="since">Since 1.0</p>
671
+ </div>
672
+ <hr>
673
+ <div class="refsect2">
674
+ <a name="hb-font-funcs-set-glyph-v-origin-func"></a><h3>hb_font_funcs_set_glyph_v_origin_func ()</h3>
675
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_funcs_set_glyph_v_origin_func
676
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
677
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-get-glyph-v-origin-func-t" title="hb_font_get_glyph_v_origin_func_t"><span class="type">hb_font_get_glyph_v_origin_func_t</span></a> func</code></em>,
678
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>,
679
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);</pre>
680
+ <div class="variablelist"><table border="0">
681
+ <col align="left" valign="top">
682
+ <tbody>
683
+ <tr>
684
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
685
+ <td>font functions.</td>
686
+ </tr>
687
+ <tr>
688
+ <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
689
+ <td>. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym> user_data][destroy destroy][<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span>
690
+ </td>
691
+ </tr>
692
+ </tbody>
693
+ </table></div>
694
+ <p class="since">Since 1.0</p>
695
+ </div>
696
+ <hr>
697
+ <div class="refsect2">
698
+ <a name="hb-font-funcs-set-user-data"></a><h3>hb_font_funcs_set_user_data ()</h3>
699
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_font_funcs_set_user_data (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *ffuncs</code></em>,
700
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-user-data-key-t" title="hb_user_data_key_t"><span class="type">hb_user_data_key_t</span></a> *key</code></em>,
701
+ <em class="parameter"><code><span class="type">void</span> *data</code></em>,
702
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>,
703
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="type">hb_bool_t</span></a> replace</code></em>);</pre>
704
+ <div class="variablelist"><table border="0">
705
+ <col align="left" valign="top">
706
+ <tbody><tr>
707
+ <td><p><span class="term"><em class="parameter"><code>ffuncs</code></em> :</span></p></td>
708
+ <td>font functions.</td>
709
+ </tr></tbody>
710
+ </table></div>
711
+ <p class="since">Since 1.0</p>
712
+ </div>
713
+ <hr>
714
+ <div class="refsect2">
715
+ <a name="hb-font-funcs-t"></a><h3>hb_font_funcs_t</h3>
716
+ <pre class="programlisting">typedef struct hb_font_funcs_t hb_font_funcs_t;
717
+ </pre>
718
+ <p>
719
+ </p>
720
+ </div>
721
+ <hr>
722
+ <div class="refsect2">
723
+ <a name="hb-font-get-empty"></a><h3>hb_font_get_empty ()</h3>
724
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="returnvalue">hb_font_t</span></a> * hb_font_get_empty (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
725
+ <div class="variablelist"><table border="0">
726
+ <col align="left" valign="top">
727
+ <tbody><tr>
728
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
729
+ <td>(transfer full)</td>
730
+ </tr></tbody>
731
+ </table></div>
732
+ <p class="since">Since 1.0</p>
733
+ </div>
734
+ <hr>
735
+ <div class="refsect2">
736
+ <a name="hb-font-get-face"></a><h3>hb_font_get_face ()</h3>
737
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-face.html#hb-face-t" title="hb_face_t"><span class="returnvalue">hb_face_t</span></a> * hb_font_get_face (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>);</pre>
738
+ <div class="variablelist"><table border="0">
739
+ <col align="left" valign="top">
740
+ <tbody>
741
+ <tr>
742
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
743
+ <td>a font.</td>
744
+ </tr>
745
+ <tr>
746
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
747
+ <td>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
748
+ </td>
749
+ </tr>
750
+ </tbody>
751
+ </table></div>
752
+ <p class="since">Since 1.0</p>
753
+ </div>
754
+ <hr>
755
+ <div class="refsect2">
756
+ <a name="hb-font-get-glyph"></a><h3>hb_font_get_glyph ()</h3>
757
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_font_get_glyph (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
758
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> unicode</code></em>,
759
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> variation_selector</code></em>,
760
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> *glyph</code></em>);</pre>
761
+ <div class="variablelist"><table border="0">
762
+ <col align="left" valign="top">
763
+ <tbody>
764
+ <tr>
765
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
766
+ <td>a font.</td>
767
+ </tr>
768
+ <tr>
769
+ <td><p><span class="term"><em class="parameter"><code>glyph</code></em> :</span></p></td>
770
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
771
+ </td>
772
+ </tr>
773
+ </tbody>
774
+ </table></div>
775
+ <p class="since">Since 1.0</p>
776
+ </div>
777
+ <hr>
778
+ <div class="refsect2">
779
+ <a name="hb-font-get-glyph-advance-for-direction"></a><h3>hb_font_get_glyph_advance_for_direction ()</h3>
780
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_get_glyph_advance_for_direction
781
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
782
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
783
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-direction-t" title="enum hb_direction_t"><span class="type">hb_direction_t</span></a> direction</code></em>,
784
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
785
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);</pre>
786
+ <div class="variablelist"><table border="0">
787
+ <col align="left" valign="top">
788
+ <tbody>
789
+ <tr>
790
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
791
+ <td>a font.</td>
792
+ </tr>
793
+ <tr>
794
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
795
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
796
+ </td>
797
+ </tr>
798
+ <tr>
799
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
800
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
801
+ </td>
802
+ </tr>
803
+ </tbody>
804
+ </table></div>
805
+ <p class="since">Since 1.0</p>
806
+ </div>
807
+ <hr>
808
+ <div class="refsect2">
809
+ <a name="hb-font-get-glyph-advance-func-t"></a><h3>hb_font_get_glyph_advance_func_t ()</h3>
810
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="returnvalue">hb_position_t</span></a> (*hb_font_get_glyph_advance_func_t) (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
811
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
812
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
813
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);</pre>
814
+ <p>
815
+ </p>
816
+ </div>
817
+ <hr>
818
+ <div class="refsect2">
819
+ <a name="hb-font-get-glyph-contour-point"></a><h3>hb_font_get_glyph_contour_point ()</h3>
820
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_font_get_glyph_contour_point (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
821
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
822
+ <em class="parameter"><code>unsigned <span class="type">int</span> point_index</code></em>,
823
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
824
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);</pre>
825
+ <div class="variablelist"><table border="0">
826
+ <col align="left" valign="top">
827
+ <tbody>
828
+ <tr>
829
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
830
+ <td>a font.</td>
831
+ </tr>
832
+ <tr>
833
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
834
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
835
+ </td>
836
+ </tr>
837
+ <tr>
838
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
839
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
840
+ </td>
841
+ </tr>
842
+ </tbody>
843
+ </table></div>
844
+ <p class="since">Since 1.0</p>
845
+ </div>
846
+ <hr>
847
+ <div class="refsect2">
848
+ <a name="hb-font-get-glyph-contour-point-for-origin"></a><h3>hb_font_get_glyph_contour_point_for_origin ()</h3>
849
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_font_get_glyph_contour_point_for_origin
850
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
851
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
852
+ <em class="parameter"><code>unsigned <span class="type">int</span> point_index</code></em>,
853
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-direction-t" title="enum hb_direction_t"><span class="type">hb_direction_t</span></a> direction</code></em>,
854
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
855
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);</pre>
856
+ <div class="variablelist"><table border="0">
857
+ <col align="left" valign="top">
858
+ <tbody>
859
+ <tr>
860
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
861
+ <td>a font.</td>
862
+ </tr>
863
+ <tr>
864
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
865
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
866
+ </td>
867
+ </tr>
868
+ <tr>
869
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
870
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
871
+ </td>
872
+ </tr>
873
+ </tbody>
874
+ </table></div>
875
+ <p class="since">Since 1.0</p>
876
+ </div>
877
+ <hr>
878
+ <div class="refsect2">
879
+ <a name="hb-font-get-glyph-contour-point-func-t"></a><h3>hb_font_get_glyph_contour_point_func_t ()</h3>
880
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> (*hb_font_get_glyph_contour_point_func_t)
881
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
882
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
883
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
884
+ <em class="parameter"><code>unsigned <span class="type">int</span> point_index</code></em>,
885
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
886
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>,
887
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);</pre>
888
+ <p>
889
+ </p>
890
+ </div>
891
+ <hr>
892
+ <div class="refsect2">
893
+ <a name="hb-font-get-glyph-extents"></a><h3>hb_font_get_glyph_extents ()</h3>
894
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_font_get_glyph_extents (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
895
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
896
+ <em class="parameter"><code><span class="type">hb_glyph_extents_t</span> *extents</code></em>);</pre>
897
+ <div class="variablelist"><table border="0">
898
+ <col align="left" valign="top">
899
+ <tbody>
900
+ <tr>
901
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
902
+ <td>a font.</td>
903
+ </tr>
904
+ <tr>
905
+ <td><p><span class="term"><em class="parameter"><code>extents</code></em> :</span></p></td>
906
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
907
+ </td>
908
+ </tr>
909
+ </tbody>
910
+ </table></div>
911
+ <p class="since">Since 1.0</p>
912
+ </div>
913
+ <hr>
914
+ <div class="refsect2">
915
+ <a name="hb-font-get-glyph-extents-for-origin"></a><h3>hb_font_get_glyph_extents_for_origin ()</h3>
916
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_font_get_glyph_extents_for_origin
917
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
918
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
919
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-direction-t" title="enum hb_direction_t"><span class="type">hb_direction_t</span></a> direction</code></em>,
920
+ <em class="parameter"><code><span class="type">hb_glyph_extents_t</span> *extents</code></em>);</pre>
921
+ <div class="variablelist"><table border="0">
922
+ <col align="left" valign="top">
923
+ <tbody>
924
+ <tr>
925
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
926
+ <td>a font.</td>
927
+ </tr>
928
+ <tr>
929
+ <td><p><span class="term"><em class="parameter"><code>extents</code></em> :</span></p></td>
930
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
931
+ </td>
932
+ </tr>
933
+ </tbody>
934
+ </table></div>
935
+ <p class="since">Since 1.0</p>
936
+ </div>
937
+ <hr>
938
+ <div class="refsect2">
939
+ <a name="hb-font-get-glyph-extents-func-t"></a><h3>hb_font_get_glyph_extents_func_t ()</h3>
940
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> (*hb_font_get_glyph_extents_func_t) (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
941
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
942
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
943
+ <em class="parameter"><code><span class="type">hb_glyph_extents_t</span> *extents</code></em>,
944
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);</pre>
945
+ <p>
946
+ </p>
947
+ </div>
948
+ <hr>
949
+ <div class="refsect2">
950
+ <a name="hb-font-get-glyph-from-name"></a><h3>hb_font_get_glyph_from_name ()</h3>
951
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_font_get_glyph_from_name (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
952
+ <em class="parameter"><code>const <span class="type">char</span> *name</code></em>,
953
+ <em class="parameter"><code><span class="type">int</span> len</code></em>,
954
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> *glyph</code></em>);</pre>
955
+ <div class="variablelist"><table border="0">
956
+ <col align="left" valign="top">
957
+ <tbody>
958
+ <tr>
959
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
960
+ <td>a font.</td>
961
+ </tr>
962
+ <tr>
963
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
964
+ <td>. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=len]</span>
965
+ </td>
966
+ </tr>
967
+ <tr>
968
+ <td><p><span class="term"><em class="parameter"><code>glyph</code></em> :</span></p></td>
969
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
970
+ </td>
971
+ </tr>
972
+ </tbody>
973
+ </table></div>
974
+ <p class="since">Since 1.0</p>
975
+ </div>
976
+ <hr>
977
+ <div class="refsect2">
978
+ <a name="hb-font-get-glyph-from-name-func-t"></a><h3>hb_font_get_glyph_from_name_func_t ()</h3>
979
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> (*hb_font_get_glyph_from_name_func_t)
980
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
981
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
982
+ <em class="parameter"><code>const <span class="type">char</span> *name</code></em>,
983
+ <em class="parameter"><code><span class="type">int</span> len</code></em>);</pre>
984
+ <p>
985
+ </p>
986
+ </div>
987
+ <hr>
988
+ <div class="refsect2">
989
+ <a name="hb-font-get-glyph-func-t"></a><h3>hb_font_get_glyph_func_t ()</h3>
990
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> (*hb_font_get_glyph_func_t) (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
991
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
992
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> unicode</code></em>,
993
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> variation_selector</code></em>,
994
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> *glyph</code></em>,
995
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);</pre>
996
+ <p>
997
+ </p>
998
+ </div>
999
+ <hr>
1000
+ <div class="refsect2">
1001
+ <a name="hb-font-get-glyph-h-advance"></a><h3>hb_font_get_glyph_h_advance ()</h3>
1002
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="returnvalue">hb_position_t</span></a> hb_font_get_glyph_h_advance (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1003
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>);</pre>
1004
+ <div class="variablelist"><table border="0">
1005
+ <col align="left" valign="top">
1006
+ <tbody><tr>
1007
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1008
+ <td>a font.</td>
1009
+ </tr></tbody>
1010
+ </table></div>
1011
+ <p class="since">Since 1.0</p>
1012
+ </div>
1013
+ <hr>
1014
+ <div class="refsect2">
1015
+ <a name="hb-font-get-glyph-h-advance-func-t"></a><h3>hb_font_get_glyph_h_advance_func_t</h3>
1016
+ <pre class="programlisting">typedef hb_font_get_glyph_advance_func_t hb_font_get_glyph_h_advance_func_t;
1017
+ </pre>
1018
+ <p>
1019
+ </p>
1020
+ </div>
1021
+ <hr>
1022
+ <div class="refsect2">
1023
+ <a name="hb-font-get-glyph-h-kerning"></a><h3>hb_font_get_glyph_h_kerning ()</h3>
1024
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="returnvalue">hb_position_t</span></a> hb_font_get_glyph_h_kerning (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1025
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> left_glyph</code></em>,
1026
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> right_glyph</code></em>);</pre>
1027
+ <div class="variablelist"><table border="0">
1028
+ <col align="left" valign="top">
1029
+ <tbody><tr>
1030
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1031
+ <td>a font.</td>
1032
+ </tr></tbody>
1033
+ </table></div>
1034
+ <p class="since">Since 1.0</p>
1035
+ </div>
1036
+ <hr>
1037
+ <div class="refsect2">
1038
+ <a name="hb-font-get-glyph-h-kerning-func-t"></a><h3>hb_font_get_glyph_h_kerning_func_t</h3>
1039
+ <pre class="programlisting">typedef hb_font_get_glyph_kerning_func_t hb_font_get_glyph_h_kerning_func_t;
1040
+ </pre>
1041
+ <p>
1042
+ </p>
1043
+ </div>
1044
+ <hr>
1045
+ <div class="refsect2">
1046
+ <a name="hb-font-get-glyph-h-origin"></a><h3>hb_font_get_glyph_h_origin ()</h3>
1047
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_font_get_glyph_h_origin (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1048
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
1049
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
1050
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);</pre>
1051
+ <div class="variablelist"><table border="0">
1052
+ <col align="left" valign="top">
1053
+ <tbody>
1054
+ <tr>
1055
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1056
+ <td>a font.</td>
1057
+ </tr>
1058
+ <tr>
1059
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1060
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1061
+ </td>
1062
+ </tr>
1063
+ <tr>
1064
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1065
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1066
+ </td>
1067
+ </tr>
1068
+ </tbody>
1069
+ </table></div>
1070
+ <p class="since">Since 1.0</p>
1071
+ </div>
1072
+ <hr>
1073
+ <div class="refsect2">
1074
+ <a name="hb-font-get-glyph-h-origin-func-t"></a><h3>hb_font_get_glyph_h_origin_func_t</h3>
1075
+ <pre class="programlisting">typedef hb_font_get_glyph_origin_func_t hb_font_get_glyph_h_origin_func_t;
1076
+ </pre>
1077
+ <p>
1078
+ </p>
1079
+ </div>
1080
+ <hr>
1081
+ <div class="refsect2">
1082
+ <a name="hb-font-get-glyph-kerning-for-direction"></a><h3>hb_font_get_glyph_kerning_for_direction ()</h3>
1083
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_get_glyph_kerning_for_direction
1084
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1085
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> first_glyph</code></em>,
1086
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> second_glyph</code></em>,
1087
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-direction-t" title="enum hb_direction_t"><span class="type">hb_direction_t</span></a> direction</code></em>,
1088
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
1089
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);</pre>
1090
+ <div class="variablelist"><table border="0">
1091
+ <col align="left" valign="top">
1092
+ <tbody>
1093
+ <tr>
1094
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1095
+ <td>a font.</td>
1096
+ </tr>
1097
+ <tr>
1098
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1099
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1100
+ </td>
1101
+ </tr>
1102
+ <tr>
1103
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1104
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1105
+ </td>
1106
+ </tr>
1107
+ </tbody>
1108
+ </table></div>
1109
+ <p class="since">Since 1.0</p>
1110
+ </div>
1111
+ <hr>
1112
+ <div class="refsect2">
1113
+ <a name="hb-font-get-glyph-kerning-func-t"></a><h3>hb_font_get_glyph_kerning_func_t ()</h3>
1114
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="returnvalue">hb_position_t</span></a> (*hb_font_get_glyph_kerning_func_t) (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1115
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
1116
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> first_glyph</code></em>,
1117
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> second_glyph</code></em>,
1118
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);</pre>
1119
+ <p>
1120
+ </p>
1121
+ </div>
1122
+ <hr>
1123
+ <div class="refsect2">
1124
+ <a name="hb-font-get-glyph-name"></a><h3>hb_font_get_glyph_name ()</h3>
1125
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_font_get_glyph_name (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1126
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
1127
+ <em class="parameter"><code><span class="type">char</span> *name</code></em>,
1128
+ <em class="parameter"><code>unsigned <span class="type">int</span> size</code></em>);</pre>
1129
+ <div class="variablelist"><table border="0">
1130
+ <col align="left" valign="top">
1131
+ <tbody>
1132
+ <tr>
1133
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1134
+ <td>a font.</td>
1135
+ </tr>
1136
+ <tr>
1137
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1138
+ <td>. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=size]</span>
1139
+ </td>
1140
+ </tr>
1141
+ </tbody>
1142
+ </table></div>
1143
+ <p class="since">Since 1.0</p>
1144
+ </div>
1145
+ <hr>
1146
+ <div class="refsect2">
1147
+ <a name="hb-font-get-glyph-name-func-t"></a><h3>hb_font_get_glyph_name_func_t ()</h3>
1148
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> (*hb_font_get_glyph_name_func_t) (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1149
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
1150
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
1151
+ <em class="parameter"><code><span class="type">char</span> *name</code></em>,
1152
+ <em class="parameter"><code>unsigned <span class="type">int</span> size</code></em>,
1153
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);</pre>
1154
+ <p>
1155
+ </p>
1156
+ </div>
1157
+ <hr>
1158
+ <div class="refsect2">
1159
+ <a name="hb-font-get-glyph-origin-for-direction"></a><h3>hb_font_get_glyph_origin_for_direction ()</h3>
1160
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_get_glyph_origin_for_direction
1161
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1162
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
1163
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-direction-t" title="enum hb_direction_t"><span class="type">hb_direction_t</span></a> direction</code></em>,
1164
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
1165
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);</pre>
1166
+ <div class="variablelist"><table border="0">
1167
+ <col align="left" valign="top">
1168
+ <tbody>
1169
+ <tr>
1170
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1171
+ <td>a font.</td>
1172
+ </tr>
1173
+ <tr>
1174
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1175
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1176
+ </td>
1177
+ </tr>
1178
+ <tr>
1179
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1180
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1181
+ </td>
1182
+ </tr>
1183
+ </tbody>
1184
+ </table></div>
1185
+ <p class="since">Since 1.0</p>
1186
+ </div>
1187
+ <hr>
1188
+ <div class="refsect2">
1189
+ <a name="hb-font-get-glyph-origin-func-t"></a><h3>hb_font_get_glyph_origin_func_t ()</h3>
1190
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> (*hb_font_get_glyph_origin_func_t) (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1191
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
1192
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
1193
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
1194
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>,
1195
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);</pre>
1196
+ <p>
1197
+ </p>
1198
+ </div>
1199
+ <hr>
1200
+ <div class="refsect2">
1201
+ <a name="hb-font-get-glyph-v-advance"></a><h3>hb_font_get_glyph_v_advance ()</h3>
1202
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="returnvalue">hb_position_t</span></a> hb_font_get_glyph_v_advance (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1203
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>);</pre>
1204
+ <div class="variablelist"><table border="0">
1205
+ <col align="left" valign="top">
1206
+ <tbody><tr>
1207
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1208
+ <td>a font.</td>
1209
+ </tr></tbody>
1210
+ </table></div>
1211
+ <p class="since">Since 1.0</p>
1212
+ </div>
1213
+ <hr>
1214
+ <div class="refsect2">
1215
+ <a name="hb-font-get-glyph-v-advance-func-t"></a><h3>hb_font_get_glyph_v_advance_func_t</h3>
1216
+ <pre class="programlisting">typedef hb_font_get_glyph_advance_func_t hb_font_get_glyph_v_advance_func_t;
1217
+ </pre>
1218
+ <p>
1219
+ </p>
1220
+ </div>
1221
+ <hr>
1222
+ <div class="refsect2">
1223
+ <a name="hb-font-get-glyph-v-kerning"></a><h3>hb_font_get_glyph_v_kerning ()</h3>
1224
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="returnvalue">hb_position_t</span></a> hb_font_get_glyph_v_kerning (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1225
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> top_glyph</code></em>,
1226
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> bottom_glyph</code></em>);</pre>
1227
+ <div class="variablelist"><table border="0">
1228
+ <col align="left" valign="top">
1229
+ <tbody><tr>
1230
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1231
+ <td>a font.</td>
1232
+ </tr></tbody>
1233
+ </table></div>
1234
+ <p class="since">Since 1.0</p>
1235
+ </div>
1236
+ <hr>
1237
+ <div class="refsect2">
1238
+ <a name="hb-font-get-glyph-v-kerning-func-t"></a><h3>hb_font_get_glyph_v_kerning_func_t</h3>
1239
+ <pre class="programlisting">typedef hb_font_get_glyph_kerning_func_t hb_font_get_glyph_v_kerning_func_t;
1240
+ </pre>
1241
+ <p>
1242
+ </p>
1243
+ </div>
1244
+ <hr>
1245
+ <div class="refsect2">
1246
+ <a name="hb-font-get-glyph-v-origin"></a><h3>hb_font_get_glyph_v_origin ()</h3>
1247
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_font_get_glyph_v_origin (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1248
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
1249
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
1250
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);</pre>
1251
+ <div class="variablelist"><table border="0">
1252
+ <col align="left" valign="top">
1253
+ <tbody>
1254
+ <tr>
1255
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1256
+ <td>a font.</td>
1257
+ </tr>
1258
+ <tr>
1259
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1260
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1261
+ </td>
1262
+ </tr>
1263
+ <tr>
1264
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1265
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1266
+ </td>
1267
+ </tr>
1268
+ </tbody>
1269
+ </table></div>
1270
+ <p class="since">Since 1.0</p>
1271
+ </div>
1272
+ <hr>
1273
+ <div class="refsect2">
1274
+ <a name="hb-font-get-glyph-v-origin-func-t"></a><h3>hb_font_get_glyph_v_origin_func_t</h3>
1275
+ <pre class="programlisting">typedef hb_font_get_glyph_origin_func_t hb_font_get_glyph_v_origin_func_t;
1276
+ </pre>
1277
+ <p>
1278
+ </p>
1279
+ </div>
1280
+ <hr>
1281
+ <div class="refsect2">
1282
+ <a name="hb-font-get-parent"></a><h3>hb_font_get_parent ()</h3>
1283
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="returnvalue">hb_font_t</span></a> * hb_font_get_parent (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>);</pre>
1284
+ <div class="variablelist"><table border="0">
1285
+ <col align="left" valign="top">
1286
+ <tbody>
1287
+ <tr>
1288
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1289
+ <td>a font.</td>
1290
+ </tr>
1291
+ <tr>
1292
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1293
+ <td>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1294
+ </td>
1295
+ </tr>
1296
+ </tbody>
1297
+ </table></div>
1298
+ <p class="since">Since 1.0</p>
1299
+ </div>
1300
+ <hr>
1301
+ <div class="refsect2">
1302
+ <a name="hb-font-get-ppem"></a><h3>hb_font_get_ppem ()</h3>
1303
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_get_ppem (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1304
+ <em class="parameter"><code>unsigned <span class="type">int</span> *x_ppem</code></em>,
1305
+ <em class="parameter"><code>unsigned <span class="type">int</span> *y_ppem</code></em>);</pre>
1306
+ <div class="variablelist"><table border="0">
1307
+ <col align="left" valign="top">
1308
+ <tbody>
1309
+ <tr>
1310
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1311
+ <td>a font.</td>
1312
+ </tr>
1313
+ <tr>
1314
+ <td><p><span class="term"><em class="parameter"><code>x_ppem</code></em> :</span></p></td>
1315
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1316
+ </td>
1317
+ </tr>
1318
+ <tr>
1319
+ <td><p><span class="term"><em class="parameter"><code>y_ppem</code></em> :</span></p></td>
1320
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1321
+ </td>
1322
+ </tr>
1323
+ </tbody>
1324
+ </table></div>
1325
+ <p class="since">Since 1.0</p>
1326
+ </div>
1327
+ <hr>
1328
+ <div class="refsect2">
1329
+ <a name="hb-font-get-scale"></a><h3>hb_font_get_scale ()</h3>
1330
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_get_scale (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1331
+ <em class="parameter"><code><span class="type">int</span> *x_scale</code></em>,
1332
+ <em class="parameter"><code><span class="type">int</span> *y_scale</code></em>);</pre>
1333
+ <div class="variablelist"><table border="0">
1334
+ <col align="left" valign="top">
1335
+ <tbody>
1336
+ <tr>
1337
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1338
+ <td>a font.</td>
1339
+ </tr>
1340
+ <tr>
1341
+ <td><p><span class="term"><em class="parameter"><code>x_scale</code></em> :</span></p></td>
1342
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1343
+ </td>
1344
+ </tr>
1345
+ <tr>
1346
+ <td><p><span class="term"><em class="parameter"><code>y_scale</code></em> :</span></p></td>
1347
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1348
+ </td>
1349
+ </tr>
1350
+ </tbody>
1351
+ </table></div>
1352
+ <p class="since">Since 1.0</p>
1353
+ </div>
1354
+ <hr>
1355
+ <div class="refsect2">
1356
+ <a name="hb-font-get-user-data"></a><h3>hb_font_get_user_data ()</h3>
1357
+ <pre class="programlisting"><span class="returnvalue">void</span> * hb_font_get_user_data (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1358
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-user-data-key-t" title="hb_user_data_key_t"><span class="type">hb_user_data_key_t</span></a> *key</code></em>);</pre>
1359
+ <div class="variablelist"><table border="0">
1360
+ <col align="left" valign="top">
1361
+ <tbody>
1362
+ <tr>
1363
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1364
+ <td>a font.</td>
1365
+ </tr>
1366
+ <tr>
1367
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1368
+ <td>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1369
+ </td>
1370
+ </tr>
1371
+ </tbody>
1372
+ </table></div>
1373
+ <p class="since">Since 1.0</p>
1374
+ </div>
1375
+ <hr>
1376
+ <div class="refsect2">
1377
+ <a name="hb-font-glyph-from-string"></a><h3>hb_font_glyph_from_string ()</h3>
1378
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_font_glyph_from_string (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1379
+ <em class="parameter"><code>const <span class="type">char</span> *s</code></em>,
1380
+ <em class="parameter"><code><span class="type">int</span> len</code></em>,
1381
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> *glyph</code></em>);</pre>
1382
+ <div class="variablelist"><table border="0">
1383
+ <col align="left" valign="top">
1384
+ <tbody>
1385
+ <tr>
1386
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1387
+ <td>a font.</td>
1388
+ </tr>
1389
+ <tr>
1390
+ <td><p><span class="term"><em class="parameter"><code>s</code></em> :</span></p></td>
1391
+ <td>. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=len]</span>
1392
+ </td>
1393
+ </tr>
1394
+ <tr>
1395
+ <td><p><span class="term"><em class="parameter"><code>glyph</code></em> :</span></p></td>
1396
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1397
+ </td>
1398
+ </tr>
1399
+ </tbody>
1400
+ </table></div>
1401
+ <p class="since">Since 1.0</p>
1402
+ </div>
1403
+ <hr>
1404
+ <div class="refsect2">
1405
+ <a name="hb-font-glyph-to-string"></a><h3>hb_font_glyph_to_string ()</h3>
1406
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_glyph_to_string (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1407
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
1408
+ <em class="parameter"><code><span class="type">char</span> *s</code></em>,
1409
+ <em class="parameter"><code>unsigned <span class="type">int</span> size</code></em>);</pre>
1410
+ <div class="variablelist"><table border="0">
1411
+ <col align="left" valign="top">
1412
+ <tbody>
1413
+ <tr>
1414
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1415
+ <td>a font.</td>
1416
+ </tr>
1417
+ <tr>
1418
+ <td><p><span class="term"><em class="parameter"><code>s</code></em> :</span></p></td>
1419
+ <td>. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=size]</span>
1420
+ </td>
1421
+ </tr>
1422
+ </tbody>
1423
+ </table></div>
1424
+ <p class="since">Since 1.0</p>
1425
+ </div>
1426
+ <hr>
1427
+ <div class="refsect2">
1428
+ <a name="hb-font-is-immutable"></a><h3>hb_font_is_immutable ()</h3>
1429
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_font_is_immutable (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>);</pre>
1430
+ <div class="variablelist"><table border="0">
1431
+ <col align="left" valign="top">
1432
+ <tbody><tr>
1433
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1434
+ <td>a font.</td>
1435
+ </tr></tbody>
1436
+ </table></div>
1437
+ <p class="since">Since 1.0</p>
1438
+ </div>
1439
+ <hr>
1440
+ <div class="refsect2">
1441
+ <a name="hb-font-make-immutable"></a><h3>hb_font_make_immutable ()</h3>
1442
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_make_immutable (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>);</pre>
1443
+ <div class="variablelist"><table border="0">
1444
+ <col align="left" valign="top">
1445
+ <tbody><tr>
1446
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1447
+ <td>a font.</td>
1448
+ </tr></tbody>
1449
+ </table></div>
1450
+ <p class="since">Since 1.0</p>
1451
+ </div>
1452
+ <hr>
1453
+ <div class="refsect2">
1454
+ <a name="hb-font-reference"></a><h3>hb_font_reference ()</h3>
1455
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="returnvalue">hb_font_t</span></a> * hb_font_reference (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>);</pre>
1456
+ <div class="variablelist"><table border="0">
1457
+ <col align="left" valign="top">
1458
+ <tbody>
1459
+ <tr>
1460
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1461
+ <td>a font.</td>
1462
+ </tr>
1463
+ <tr>
1464
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1465
+ <td>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1466
+ </td>
1467
+ </tr>
1468
+ </tbody>
1469
+ </table></div>
1470
+ <p class="since">Since 1.0</p>
1471
+ </div>
1472
+ <hr>
1473
+ <div class="refsect2">
1474
+ <a name="hb-font-set-funcs"></a><h3>hb_font_set_funcs ()</h3>
1475
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_set_funcs (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1476
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-funcs-t" title="hb_font_funcs_t"><span class="type">hb_font_funcs_t</span></a> *klass</code></em>,
1477
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
1478
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);</pre>
1479
+ <div class="variablelist"><table border="0">
1480
+ <col align="left" valign="top">
1481
+ <tbody>
1482
+ <tr>
1483
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1484
+ <td>a font.</td>
1485
+ </tr>
1486
+ <tr>
1487
+ <td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
1488
+ <td>. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym> font_data][destroy destroy][<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span>
1489
+ </td>
1490
+ </tr>
1491
+ </tbody>
1492
+ </table></div>
1493
+ <p class="since">Since 1.0</p>
1494
+ </div>
1495
+ <hr>
1496
+ <div class="refsect2">
1497
+ <a name="hb-font-set-funcs-data"></a><h3>hb_font_set_funcs_data ()</h3>
1498
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_set_funcs_data (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1499
+ <em class="parameter"><code><span class="type">void</span> *font_data</code></em>,
1500
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>);</pre>
1501
+ <div class="variablelist"><table border="0">
1502
+ <col align="left" valign="top">
1503
+ <tbody>
1504
+ <tr>
1505
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1506
+ <td>a font.</td>
1507
+ </tr>
1508
+ <tr>
1509
+ <td><p><span class="term"><em class="parameter"><code>font_data</code></em> :</span></p></td>
1510
+ <td>. <span class="annotation">[destroy destroy][<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span>
1511
+ </td>
1512
+ </tr>
1513
+ </tbody>
1514
+ </table></div>
1515
+ <p class="since">Since 1.0</p>
1516
+ </div>
1517
+ <hr>
1518
+ <div class="refsect2">
1519
+ <a name="hb-font-set-ppem"></a><h3>hb_font_set_ppem ()</h3>
1520
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_set_ppem (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1521
+ <em class="parameter"><code>unsigned <span class="type">int</span> x_ppem</code></em>,
1522
+ <em class="parameter"><code>unsigned <span class="type">int</span> y_ppem</code></em>);</pre>
1523
+ <div class="variablelist"><table border="0">
1524
+ <col align="left" valign="top">
1525
+ <tbody><tr>
1526
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1527
+ <td>a font.</td>
1528
+ </tr></tbody>
1529
+ </table></div>
1530
+ <p class="since">Since 1.0</p>
1531
+ </div>
1532
+ <hr>
1533
+ <div class="refsect2">
1534
+ <a name="hb-font-set-scale"></a><h3>hb_font_set_scale ()</h3>
1535
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_set_scale (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1536
+ <em class="parameter"><code><span class="type">int</span> x_scale</code></em>,
1537
+ <em class="parameter"><code><span class="type">int</span> y_scale</code></em>);</pre>
1538
+ <div class="variablelist"><table border="0">
1539
+ <col align="left" valign="top">
1540
+ <tbody><tr>
1541
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1542
+ <td>a font.</td>
1543
+ </tr></tbody>
1544
+ </table></div>
1545
+ <p class="since">Since 1.0</p>
1546
+ </div>
1547
+ <hr>
1548
+ <div class="refsect2">
1549
+ <a name="hb-font-set-user-data"></a><h3>hb_font_set_user_data ()</h3>
1550
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="returnvalue">hb_bool_t</span></a> hb_font_set_user_data (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1551
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-user-data-key-t" title="hb_user_data_key_t"><span class="type">hb_user_data_key_t</span></a> *key</code></em>,
1552
+ <em class="parameter"><code><span class="type">void</span> *data</code></em>,
1553
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-destroy-func-t" title="hb_destroy_func_t ()"><span class="type">hb_destroy_func_t</span></a> destroy</code></em>,
1554
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-bool-t" title="hb_bool_t"><span class="type">hb_bool_t</span></a> replace</code></em>);</pre>
1555
+ <div class="variablelist"><table border="0">
1556
+ <col align="left" valign="top">
1557
+ <tbody><tr>
1558
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1559
+ <td>a font.</td>
1560
+ </tr></tbody>
1561
+ </table></div>
1562
+ <p class="since">Since 1.0</p>
1563
+ </div>
1564
+ <hr>
1565
+ <div class="refsect2">
1566
+ <a name="hb-font-subtract-glyph-origin-for-direction"></a><h3>hb_font_subtract_glyph_origin_for_direction ()</h3>
1567
+ <pre class="programlisting"><span class="returnvalue">void</span> hb_font_subtract_glyph_origin_for_direction
1568
+ (<em class="parameter"><code><a class="link" href="harfbuzz-hb-font.html#hb-font-t" title="hb_font_t"><span class="type">hb_font_t</span></a> *font</code></em>,
1569
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-codepoint-t" title="hb_codepoint_t"><span class="type">hb_codepoint_t</span></a> glyph</code></em>,
1570
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-direction-t" title="enum hb_direction_t"><span class="type">hb_direction_t</span></a> direction</code></em>,
1571
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *x</code></em>,
1572
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-position-t" title="hb_position_t"><span class="type">hb_position_t</span></a> *y</code></em>);</pre>
1573
+ <div class="variablelist"><table border="0">
1574
+ <col align="left" valign="top">
1575
+ <tbody>
1576
+ <tr>
1577
+ <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
1578
+ <td>a font.</td>
1579
+ </tr>
1580
+ <tr>
1581
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1582
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1583
+ </td>
1584
+ </tr>
1585
+ <tr>
1586
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1587
+ <td>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1588
+ </td>
1589
+ </tr>
1590
+ </tbody>
1591
+ </table></div>
1592
+ <p class="since">Since 1.0</p>
1593
+ </div>
1594
+ <hr>
1595
+ <div class="refsect2">
1596
+ <a name="hb-font-t"></a><h3>hb_font_t</h3>
1597
+ <pre class="programlisting">typedef struct hb_font_t hb_font_t;
1598
+ </pre>
1599
+ <p>
1600
+ </p>
1601
+ </div>
1602
+ <hr>
1603
+ <div class="refsect2">
1604
+ <a name="hb-reference-table-func-t"></a><h3>hb_reference_table_func_t ()</h3>
1605
+ <pre class="programlisting"><a class="link" href="harfbuzz-hb-blob.html#hb-blob-t" title="hb_blob_t"><span class="returnvalue">hb_blob_t</span></a> * (*hb_reference_table_func_t) (<em class="parameter"><code><a class="link" href="harfbuzz-hb-face.html#hb-face-t" title="hb_face_t"><span class="type">hb_face_t</span></a> *face</code></em>,
1606
+ <em class="parameter"><code><a class="link" href="harfbuzz-hb-common.html#hb-tag-t" title="hb_tag_t"><span class="type">hb_tag_t</span></a> tag</code></em>,
1607
+ <em class="parameter"><code><span class="type">void</span> *user_data</code></em>);</pre>
1608
+ <p>
1609
+ </p>
1610
+ </div>
1611
+ </div>
1612
+ </div>
1613
+ <div class="footer">
1614
+ <hr>
1615
+ Generated by GTK-Doc V1.19.1</div>
1616
+ </body>
1617
+ </html>