cairo 1.15.9-x86-mingw32 → 1.15.10-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 (394) hide show
  1. checksums.yaml +4 -4
  2. data/NEWS +20 -0
  3. data/Rakefile +9 -7
  4. data/ext/cairo/rb_cairo.h +1 -1
  5. data/lib/2.2/cairo.so +0 -0
  6. data/lib/2.3/cairo.so +0 -0
  7. data/lib/2.4/cairo.so +0 -0
  8. data/lib/cairo.rb +3 -3
  9. data/test/cairo-test-utils.rb +8 -4
  10. data/test/test_context.rb +1 -1
  11. data/test/test_font_face.rb +1 -1
  12. data/test/test_recording_surface.rb +1 -0
  13. data/vendor/local/bin/fc-cache.exe +0 -0
  14. data/vendor/local/bin/fc-cat.exe +0 -0
  15. data/vendor/local/bin/fc-list.exe +0 -0
  16. data/vendor/local/bin/fc-match.exe +0 -0
  17. data/vendor/local/bin/fc-pattern.exe +0 -0
  18. data/vendor/local/bin/fc-query.exe +0 -0
  19. data/vendor/local/bin/fc-scan.exe +0 -0
  20. data/vendor/local/bin/fc-validate.exe +0 -0
  21. data/vendor/local/bin/freetype-config +78 -28
  22. data/vendor/local/bin/libcairo-2.dll +0 -0
  23. data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
  24. data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
  25. data/vendor/local/bin/libfontconfig-1.dll +0 -0
  26. data/vendor/local/bin/libfreetype-6.dll +0 -0
  27. data/vendor/local/bin/libpixman-1-0.dll +0 -0
  28. data/vendor/local/bin/libpng-config +1 -1
  29. data/vendor/local/bin/libpng16-16.dll +0 -0
  30. data/vendor/local/bin/libpng16-config +1 -1
  31. data/vendor/local/bin/libxml2-2.dll +0 -0
  32. data/vendor/local/bin/png-fix-itxt.exe +0 -0
  33. data/vendor/local/bin/pngfix.exe +0 -0
  34. data/vendor/local/bin/xml2-config +1 -1
  35. data/vendor/local/bin/xmlcatalog.exe +0 -0
  36. data/vendor/local/bin/xmllint.exe +0 -0
  37. data/vendor/local/bin/zlib1211.dll +0 -0
  38. data/vendor/local/etc/fonts/conf.d/30-metric-aliases.conf +56 -16
  39. data/vendor/local/etc/fonts/conf.d/30-urw-aliases.conf +11 -2
  40. data/vendor/local/etc/fonts/conf.d/45-latin.conf +4 -0
  41. data/vendor/local/etc/fonts/conf.d/60-latin.conf +1 -0
  42. data/vendor/local/include/cairo/cairo-pdf.h +7 -8
  43. data/vendor/local/include/cairo/cairo-version.h +1 -1
  44. data/vendor/local/include/fontconfig/fontconfig.h +3 -2
  45. data/vendor/local/include/freetype2/freetype/config/ftconfig.h +10 -1
  46. data/vendor/local/include/freetype2/freetype/config/ftheader.h +14 -1
  47. data/vendor/local/include/freetype2/freetype/config/ftoption.h +79 -22
  48. data/vendor/local/include/freetype2/freetype/config/ftstdlib.h +1 -1
  49. data/vendor/local/include/freetype2/freetype/freetype.h +616 -400
  50. data/vendor/local/include/freetype2/freetype/ftadvanc.h +1 -1
  51. data/vendor/local/include/freetype2/freetype/ftautoh.h +32 -10
  52. data/vendor/local/include/freetype2/freetype/ftbbox.h +1 -1
  53. data/vendor/local/include/freetype2/freetype/ftbdf.h +1 -1
  54. data/vendor/local/include/freetype2/freetype/ftbitmap.h +1 -1
  55. data/vendor/local/include/freetype2/freetype/ftbzip2.h +1 -1
  56. data/vendor/local/include/freetype2/freetype/ftcache.h +1 -1
  57. data/vendor/local/include/freetype2/freetype/ftcffdrv.h +47 -1
  58. data/vendor/local/include/freetype2/freetype/ftchapters.h +1 -0
  59. data/vendor/local/include/freetype2/freetype/ftcid.h +1 -1
  60. data/vendor/local/include/freetype2/freetype/fterrdef.h +5 -1
  61. data/vendor/local/include/freetype2/freetype/fterrors.h +5 -5
  62. data/vendor/local/include/freetype2/freetype/ftfntfmt.h +1 -1
  63. data/vendor/local/include/freetype2/freetype/ftgasp.h +12 -4
  64. data/vendor/local/include/freetype2/freetype/ftglyph.h +11 -2
  65. data/vendor/local/include/freetype2/freetype/ftgxval.h +1 -1
  66. data/vendor/local/include/freetype2/freetype/ftgzip.h +1 -1
  67. data/vendor/local/include/freetype2/freetype/ftimage.h +12 -12
  68. data/vendor/local/include/freetype2/freetype/ftincrem.h +1 -1
  69. data/vendor/local/include/freetype2/freetype/ftlcdfil.h +46 -10
  70. data/vendor/local/include/freetype2/freetype/ftlist.h +1 -1
  71. data/vendor/local/include/freetype2/freetype/ftlzw.h +1 -1
  72. data/vendor/local/include/freetype2/freetype/ftmac.h +6 -5
  73. data/vendor/local/include/freetype2/freetype/ftmm.h +147 -58
  74. data/vendor/local/include/freetype2/freetype/ftmodapi.h +46 -3
  75. data/vendor/local/include/freetype2/freetype/ftmoderr.h +1 -1
  76. data/vendor/local/include/freetype2/freetype/ftotval.h +1 -1
  77. data/vendor/local/include/freetype2/freetype/ftoutln.h +4 -1
  78. data/vendor/local/include/freetype2/freetype/ftpcfdrv.h +105 -0
  79. data/vendor/local/include/freetype2/freetype/ftpfr.h +1 -1
  80. data/vendor/local/include/freetype2/freetype/ftrender.h +1 -1
  81. data/vendor/local/include/freetype2/freetype/ftsizes.h +1 -1
  82. data/vendor/local/include/freetype2/freetype/ftsnames.h +117 -30
  83. data/vendor/local/include/freetype2/freetype/ftstroke.h +2 -2
  84. data/vendor/local/include/freetype2/freetype/ftsynth.h +1 -1
  85. data/vendor/local/include/freetype2/freetype/ftsystem.h +1 -1
  86. data/vendor/local/include/freetype2/freetype/fttrigon.h +1 -1
  87. data/vendor/local/include/freetype2/freetype/ftttdrv.h +5 -6
  88. data/vendor/local/include/freetype2/freetype/fttypes.h +1 -1
  89. data/vendor/local/include/freetype2/freetype/ftwinfnt.h +1 -1
  90. data/vendor/local/include/freetype2/freetype/t1tables.h +3 -3
  91. data/vendor/local/include/freetype2/freetype/ttnameid.h +313 -314
  92. data/vendor/local/include/freetype2/freetype/tttables.h +190 -173
  93. data/vendor/local/include/freetype2/freetype/tttags.h +7 -1
  94. data/vendor/local/include/freetype2/freetype/ttunpat.h +2 -2
  95. data/vendor/local/include/freetype2/ft2build.h +1 -1
  96. data/vendor/local/include/libpng16/png.h +29 -18
  97. data/vendor/local/include/libpng16/pngconf.h +1 -1
  98. data/vendor/local/include/libpng16/pnglibconf.h +5 -2
  99. data/vendor/local/include/libxml2/libxml/HTMLparser.h +2 -2
  100. data/vendor/local/include/libxml2/libxml/schemasInternals.h +1 -1
  101. data/vendor/local/include/libxml2/libxml/xmlreader.h +1 -1
  102. data/vendor/local/include/libxml2/libxml/xmlversion.h +4 -4
  103. data/vendor/local/include/png.h +29 -18
  104. data/vendor/local/include/pngconf.h +1 -1
  105. data/vendor/local/include/pnglibconf.h +5 -2
  106. data/vendor/local/lib/cmake/libxml2/libxml2-config.cmake +2 -2
  107. data/vendor/local/lib/fontconfig.def +1 -1
  108. data/vendor/local/lib/libcairo-gobject.a +0 -0
  109. data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
  110. data/vendor/local/lib/libcairo-gobject.la +2 -2
  111. data/vendor/local/lib/libcairo-script-interpreter.a +0 -0
  112. data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
  113. data/vendor/local/lib/libcairo-script-interpreter.la +2 -2
  114. data/vendor/local/lib/libcairo.a +0 -0
  115. data/vendor/local/lib/libcairo.dll.a +0 -0
  116. data/vendor/local/lib/libcairo.la +2 -2
  117. data/vendor/local/lib/libfontconfig.dll.a +0 -0
  118. data/vendor/local/lib/libfontconfig.la +1 -1
  119. data/vendor/local/lib/libfreetype.a +0 -0
  120. data/vendor/local/lib/libfreetype.dll.a +0 -0
  121. data/vendor/local/lib/libfreetype.la +2 -2
  122. data/vendor/local/lib/libpixman-1.dll.a +0 -0
  123. data/vendor/local/lib/libpng.a +0 -0
  124. data/vendor/local/lib/libpng.dll.a +0 -0
  125. data/vendor/local/lib/libpng.la +2 -2
  126. data/vendor/local/lib/libpng16.a +0 -0
  127. data/vendor/local/lib/libpng16.dll.a +0 -0
  128. data/vendor/local/lib/libpng16.la +2 -2
  129. data/vendor/local/lib/libxml2.a +0 -0
  130. data/vendor/local/lib/libxml2.dll.a +0 -0
  131. data/vendor/local/lib/libxml2.la +1 -1
  132. data/vendor/local/lib/libz.dll.a +0 -0
  133. data/vendor/local/lib/pkgconfig/cairo-fc.pc +1 -1
  134. data/vendor/local/lib/pkgconfig/cairo-ft.pc +1 -1
  135. data/vendor/local/lib/pkgconfig/cairo-gobject.pc +1 -1
  136. data/vendor/local/lib/pkgconfig/cairo-pdf.pc +1 -1
  137. data/vendor/local/lib/pkgconfig/cairo-png.pc +1 -1
  138. data/vendor/local/lib/pkgconfig/cairo-ps.pc +1 -1
  139. data/vendor/local/lib/pkgconfig/cairo-script.pc +1 -1
  140. data/vendor/local/lib/pkgconfig/cairo-svg.pc +1 -1
  141. data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +1 -1
  142. data/vendor/local/lib/pkgconfig/cairo-win32.pc +1 -1
  143. data/vendor/local/lib/pkgconfig/cairo.pc +1 -1
  144. data/vendor/local/lib/pkgconfig/fontconfig.pc +2 -2
  145. data/vendor/local/lib/pkgconfig/freetype2.pc +1 -1
  146. data/vendor/local/lib/pkgconfig/libpng.pc +2 -1
  147. data/vendor/local/lib/pkgconfig/libpng16.pc +2 -1
  148. data/vendor/local/lib/pkgconfig/libxml-2.0.pc +1 -1
  149. data/vendor/local/lib/xml2Conf.sh +1 -1
  150. data/vendor/local/share/aclocal/freetype2.m4 +1 -1
  151. data/vendor/local/share/aclocal/libxml.m4 +1 -1
  152. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/Copyright +0 -0
  153. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testHTML.c +0 -0
  154. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testSAX.c +0 -0
  155. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testXPath.c +0 -0
  156. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/xmllint.c +78 -78
  157. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/DOM.gif +0 -0
  158. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/FAQ.html +0 -0
  159. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/Libxml2-Logo-180x168.gif +0 -0
  160. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/Libxml2-Logo-90x34.gif +0 -0
  161. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/encoding.html +0 -0
  162. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/examples.xml +256 -256
  163. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/examples.xsl +0 -0
  164. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/book1.html +0 -0
  165. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/home.png +0 -0
  166. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/index.html +0 -0
  167. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/left.png +0 -0
  168. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-DOCBparser.html +0 -0
  169. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-HTMLparser.html +4 -4
  170. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-HTMLtree.html +0 -0
  171. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-SAX.html +0 -0
  172. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-SAX2.html +0 -0
  173. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-c14n.html +0 -0
  174. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-catalog.html +0 -0
  175. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-chvalid.html +0 -0
  176. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-debugXML.html +0 -0
  177. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-dict.html +2 -2
  178. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-encoding.html +0 -0
  179. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-entities.html +0 -0
  180. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-globals.html +0 -0
  181. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-hash.html +2 -2
  182. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-lib.html +0 -0
  183. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-list.html +2 -2
  184. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-nanoftp.html +0 -0
  185. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-nanohttp.html +0 -0
  186. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-parser.html +0 -0
  187. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-parserInternals.html +0 -0
  188. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-pattern.html +0 -0
  189. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-relaxng.html +0 -0
  190. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-schemasInternals.html +1 -1
  191. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-schematron.html +0 -0
  192. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-threads.html +0 -0
  193. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-tree.html +1 -1
  194. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-uri.html +0 -0
  195. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-valid.html +0 -0
  196. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xinclude.html +0 -0
  197. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xlink.html +0 -0
  198. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlIO.html +0 -0
  199. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlautomata.html +0 -0
  200. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlerror.html +2 -2
  201. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlexports.html +0 -0
  202. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlmemory.html +0 -0
  203. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlmodule.html +0 -0
  204. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlreader.html +2 -2
  205. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlregexp.html +0 -0
  206. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlsave.html +0 -0
  207. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlschemas.html +0 -0
  208. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlschemastypes.html +0 -0
  209. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlstring.html +3 -3
  210. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlunicode.html +0 -0
  211. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlversion.html +0 -0
  212. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlwriter.html +0 -0
  213. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpath.html +1 -1
  214. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpathInternals.html +1 -1
  215. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpointer.html +1 -1
  216. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xzlib.html +0 -0
  217. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/right.png +0 -0
  218. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/up.png +0 -0
  219. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/index.html +0 -0
  220. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io1.c +0 -0
  221. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io1.res +0 -0
  222. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io2.c +0 -0
  223. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io2.res +0 -0
  224. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/libxml.gif +0 -0
  225. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse1.c +0 -0
  226. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse2.c +0 -0
  227. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse3.c +0 -0
  228. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse4.c +0 -0
  229. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader1.c +0 -0
  230. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader1.res +0 -0
  231. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader2.c +0 -0
  232. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader3.c +0 -0
  233. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader3.res +0 -0
  234. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader4.c +0 -0
  235. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader4.res +0 -0
  236. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/redhat.gif +0 -0
  237. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/smallfootonly.gif +0 -0
  238. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/structure.gif +0 -0
  239. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test1.xml +0 -0
  240. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test2.xml +0 -0
  241. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test3.xml +0 -0
  242. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/testWriter.c +16 -16
  243. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree1.c +0 -0
  244. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree1.res +0 -0
  245. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree2.c +1 -2
  246. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree2.res +0 -0
  247. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tst.xml +0 -0
  248. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apa.html +0 -0
  249. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apb.html +0 -0
  250. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apc.html +0 -0
  251. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apd.html +0 -0
  252. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ape.html +0 -0
  253. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apf.html +0 -0
  254. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apg.html +0 -0
  255. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/aph.html +0 -0
  256. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/api.html +0 -0
  257. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s02.html +0 -0
  258. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s03.html +0 -0
  259. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s04.html +0 -0
  260. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s05.html +0 -0
  261. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s06.html +0 -0
  262. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s07.html +0 -0
  263. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s08.html +0 -0
  264. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s09.html +0 -0
  265. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/blank.png +0 -0
  266. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/1.png +0 -0
  267. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/10.png +0 -0
  268. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/2.png +0 -0
  269. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/3.png +0 -0
  270. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/4.png +0 -0
  271. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/5.png +0 -0
  272. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/6.png +0 -0
  273. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/7.png +0 -0
  274. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/8.png +0 -0
  275. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/9.png +0 -0
  276. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/caution.png +0 -0
  277. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/draft.png +0 -0
  278. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/home.png +0 -0
  279. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/important.png +0 -0
  280. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/next.png +0 -0
  281. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/note.png +0 -0
  282. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/prev.png +0 -0
  283. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/tip.png +0 -0
  284. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-blank.png +0 -0
  285. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-minus.png +0 -0
  286. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-plus.png +0 -0
  287. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/up.png +0 -0
  288. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/warning.png +0 -0
  289. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeaddattribute.c +0 -0
  290. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeaddkeyword.c +0 -0
  291. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeconvert.c +0 -0
  292. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includegetattribute.c +0 -0
  293. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includekeyword.c +0 -0
  294. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includexpath.c +0 -0
  295. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/index.html +0 -0
  296. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ix01.html +0 -0
  297. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/xmltutorial.pdf +0 -0
  298. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/w3c.png +0 -0
  299. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/writer.xml +0 -0
  300. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xml.html +154 -8
  301. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath1.c +0 -0
  302. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath1.res +0 -0
  303. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath2.c +0 -0
  304. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath2.res +0 -0
  305. data/vendor/local/share/fontconfig/conf.avail/30-metric-aliases.conf +56 -16
  306. data/vendor/local/share/fontconfig/conf.avail/30-urw-aliases.conf +11 -2
  307. data/vendor/local/share/fontconfig/conf.avail/45-latin.conf +4 -0
  308. data/vendor/local/share/fontconfig/conf.avail/60-latin.conf +1 -0
  309. data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +5 -6
  310. data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +5 -6
  311. data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +5 -6
  312. data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +5 -6
  313. data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +5 -6
  314. data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +5 -6
  315. data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +5 -6
  316. data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +5 -6
  317. data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +5 -6
  318. data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +17 -25
  319. data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +42 -53
  320. data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +48 -63
  321. data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +68 -78
  322. data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +34 -47
  323. data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +82 -92
  324. data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +50 -61
  325. data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +18 -27
  326. data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +22 -32
  327. data/vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html +64 -79
  328. data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +21 -30
  329. data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +99 -125
  330. data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +31 -41
  331. data/vendor/local/share/gtk-doc/html/cairo/cairo-Script-Surfaces.html +43 -56
  332. data/vendor/local/share/gtk-doc/html/cairo/cairo-Tags-and-Links.html +23 -29
  333. data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +41 -48
  334. data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +19 -26
  335. data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +56 -72
  336. data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +28 -39
  337. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +39 -51
  338. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +34 -47
  339. data/vendor/local/share/gtk-doc/html/cairo/cairo-XCB-Surfaces.html +45 -57
  340. data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +62 -79
  341. data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html +18 -27
  342. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +53 -95
  343. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +40 -53
  344. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +71 -87
  345. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +49 -57
  346. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +158 -189
  347. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +76 -92
  348. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +146 -164
  349. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +234 -264
  350. data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +5 -6
  351. data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +5 -6
  352. data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +5 -6
  353. data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +5 -6
  354. data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +104 -119
  355. data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +236 -6
  356. data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +62 -63
  357. data/vendor/local/share/gtk-doc/html/cairo/index-1.12.html +69 -70
  358. data/vendor/local/share/gtk-doc/html/cairo/index-1.14.html +11 -12
  359. data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +59 -60
  360. data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +35 -36
  361. data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +28 -29
  362. data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +39 -40
  363. data/vendor/local/share/gtk-doc/html/cairo/index-all.html +510 -511
  364. data/vendor/local/share/gtk-doc/html/cairo/index.html +4 -5
  365. data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +5 -6
  366. data/vendor/local/share/gtk-doc/html/cairo/left-insensitive.png +0 -0
  367. data/vendor/local/share/gtk-doc/html/cairo/left.png +0 -0
  368. data/vendor/local/share/gtk-doc/html/cairo/right.png +0 -0
  369. data/vendor/local/share/gtk-doc/html/cairo/style.css +160 -142
  370. data/vendor/local/share/gtk-doc/html/cairo/up-insensitive.png +0 -0
  371. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +4 -4
  372. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +2 -2
  373. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +2 -2
  374. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +2 -2
  375. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +1 -1
  376. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1 -1
  377. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +2 -2
  378. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +2 -2
  379. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +3 -3
  380. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +1 -1
  381. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +1 -1
  382. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +1 -1
  383. data/vendor/local/share/license/cairo/README +1 -1
  384. data/vendor/local/share/license/fontconfig/README +58 -2
  385. data/vendor/local/share/license/freetype/README +5 -5
  386. data/vendor/local/share/license/freetype/README.git +1 -1
  387. data/vendor/local/share/license/libpng/README +6 -6
  388. data/vendor/local/share/license/libxml2/README.zOS +212 -0
  389. data/vendor/local/share/man/man1/freetype-config.1 +44 -6
  390. data/vendor/local/share/man/man3/libpng.3 +106 -48
  391. data/vendor/local/share/man/man3/libpngpf.3 +4 -4
  392. data/vendor/local/share/man/man5/png.5 +5 -5
  393. metadata +175 -174
  394. data/vendor/local/share/gtk-doc/html/cairo/index.sgml +0 -764
@@ -2,21 +2,20 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
- <title>Cairo: A Vector Graphics Library: User Fonts</title>
6
- <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
5
+ <title>User Fonts: Cairo: A Vector Graphics Library</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
7
7
  <link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
8
8
  <link rel="up" href="cairo-fonts.html" title="Fonts">
9
9
  <link rel="prev" href="cairo-Quartz-(CGFont)-Fonts.html" title="Quartz (CGFont) Fonts">
10
10
  <link rel="next" href="cairo-surfaces.html" title="Surfaces">
11
- <meta name="generator" content="GTK-Doc V1.20 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.25 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
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">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
16
  <td width="100%" align="left" class="shortcuts">
17
- <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
18
- <a href="#cairo-User-Fonts.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
19
- <a href="#cairo-User-Fonts.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#cairo-User-Fonts.description" class="shortcut">Description</a></span>
20
19
  </td>
21
20
  <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22
21
  <td><a accesskey="u" href="cairo-fonts.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
@@ -34,7 +33,7 @@
34
33
  </tr></table></div>
35
34
  <div class="refsect1">
36
35
  <a name="cairo-User-Fonts.functions"></a><h2>Functions</h2>
37
- <div class="informaltable"><table width="100%" border="0">
36
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
38
37
  <colgroup>
39
38
  <col width="150px" class="functions_return">
40
39
  <col class="functions_name">
@@ -149,7 +148,7 @@
149
148
  </div>
150
149
  <div class="refsect1">
151
150
  <a name="cairo-User-Fonts.other"></a><h2>Types and Values</h2>
152
- <div class="informaltable"><table width="100%" border="0">
151
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
153
152
  <colgroup>
154
153
  <col width="150px" class="name">
155
154
  <col class="description">
@@ -161,11 +160,6 @@
161
160
  </table></div>
162
161
  </div>
163
162
  <div class="refsect1">
164
- <a name="cairo-User-Fonts.object-hierarchy"></a><h2>Object Hierarchy</h2>
165
- <pre class="screen">
166
- </pre>
167
- </div>
168
- <div class="refsect1">
169
163
  <a name="cairo-User-Fonts.description"></a><h2>Description</h2>
170
164
  <p>The user-font feature allows the cairo user to provide drawings for glyphs
171
165
  in a font. This is most useful in implementing fonts in non-standard
@@ -204,8 +198,8 @@ in the previous paragraph will be used.</p>
204
198
  point and trying to use it for text operations in the callback will result
205
199
  in deadlock.</p>
206
200
  <div class="refsect3">
207
- <a name="id-1.4.8.7.2.9"></a><h4>Parameters</h4>
208
- <div class="informaltable"><table width="100%" border="0">
201
+ <a name="cairo-user-scaled-font-init-func-t.parameters"></a><h4>Parameters</h4>
202
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
209
203
  <colgroup>
210
204
  <col width="150px" class="parameters_name">
211
205
  <col class="parameters_description">
@@ -231,11 +225,10 @@ in deadlock.</p>
231
225
  </table></div>
232
226
  </div>
233
227
  <div class="refsect3">
234
- <a name="id-1.4.8.7.2.10"></a><h4>Returns</h4>
228
+ <a name="cairo-user-scaled-font-init-func-t.returns"></a><h4>Returns</h4>
235
229
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> upon success, or an error status on error.</p>
236
- <p></p>
237
230
  </div>
238
- <p class="since">Since 1.8</p>
231
+ <p class="since">Since: 1.8</p>
239
232
  </div>
240
233
  <hr>
241
234
  <div class="refsect2">
@@ -289,8 +282,8 @@ extents, it must be ink extents, and include the extents of all drawing
289
282
  done to <em class="parameter"><code>cr</code></em>
290
283
  in the callback.</p>
291
284
  <div class="refsect3">
292
- <a name="id-1.4.8.7.3.8"></a><h4>Parameters</h4>
293
- <div class="informaltable"><table width="100%" border="0">
285
+ <a name="cairo-user-scaled-font-render-glyph-func-t.parameters"></a><h4>Parameters</h4>
286
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
294
287
  <colgroup>
295
288
  <col width="150px" class="parameters_name">
296
289
  <col class="parameters_description">
@@ -321,12 +314,11 @@ done to <em class="parameter"><code>cr</code></em>
321
314
  </table></div>
322
315
  </div>
323
316
  <div class="refsect3">
324
- <a name="id-1.4.8.7.3.9"></a><h4>Returns</h4>
317
+ <a name="cairo-user-scaled-font-render-glyph-func-t.returns"></a><h4>Returns</h4>
325
318
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> upon success, or
326
319
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-USER-FONT-ERROR:CAPS"><code class="literal">CAIRO_STATUS_USER_FONT_ERROR</code></a> or any other error status on error.</p>
327
- <p></p>
328
320
  </div>
329
- <p class="since">Since 1.8</p>
321
+ <p class="since">Since: 1.8</p>
330
322
  </div>
331
323
  <hr>
332
324
  <div class="refsect2">
@@ -401,8 +393,8 @@ assume that glyph 0 is a special glyph-not-found glyph. User-fonts
401
393
  are advised to use glyph 0 for such purposes and do not use that
402
394
  glyph value for other purposes.</p>
403
395
  <div class="refsect3">
404
- <a name="id-1.4.8.7.4.10"></a><h4>Parameters</h4>
405
- <div class="informaltable"><table width="100%" border="0">
396
+ <a name="cairo-user-scaled-font-text-to-glyphs-func-t.parameters"></a><h4>Parameters</h4>
397
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
406
398
  <colgroup>
407
399
  <col width="150px" class="parameters_name">
408
400
  <col class="parameters_description">
@@ -456,13 +448,12 @@ output <em class="parameter"><code>clusters</code></em>
456
448
  </table></div>
457
449
  </div>
458
450
  <div class="refsect3">
459
- <a name="id-1.4.8.7.4.11"></a><h4>Returns</h4>
451
+ <a name="cairo-user-scaled-font-text-to-glyphs-func-t.returns"></a><h4>Returns</h4>
460
452
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> upon success,
461
453
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-USER-FONT-NOT-IMPLEMENTED:CAPS"><code class="literal">CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED</code></a> if fallback options should be tried,
462
454
  or <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-USER-FONT-ERROR:CAPS"><code class="literal">CAIRO_STATUS_USER_FONT_ERROR</code></a> or any other error status on error.</p>
463
- <p></p>
464
455
  </div>
465
- <p class="since">Since 1.8</p>
456
+ <p class="since">Since: 1.8</p>
466
457
  </div>
467
458
  <hr>
468
459
  <div class="refsect2">
@@ -495,8 +486,8 @@ assume that glyph 0 is a special glyph-not-found glyph. User-fonts
495
486
  are advised to use glyph 0 for such purposes and do not use that
496
487
  glyph value for other purposes.</p>
497
488
  <div class="refsect3">
498
- <a name="id-1.4.8.7.5.8"></a><h4>Parameters</h4>
499
- <div class="informaltable"><table width="100%" border="0">
489
+ <a name="cairo-user-scaled-font-unicode-to-glyph-func-t.parameters"></a><h4>Parameters</h4>
490
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
500
491
  <colgroup>
501
492
  <col width="150px" class="parameters_name">
502
493
  <col class="parameters_description">
@@ -522,13 +513,12 @@ glyph value for other purposes.</p>
522
513
  </table></div>
523
514
  </div>
524
515
  <div class="refsect3">
525
- <a name="id-1.4.8.7.5.9"></a><h4>Returns</h4>
516
+ <a name="cairo-user-scaled-font-unicode-to-glyph-func-t.returns"></a><h4>Returns</h4>
526
517
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> upon success,
527
518
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-USER-FONT-NOT-IMPLEMENTED:CAPS"><code class="literal">CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED</code></a> if fallback options should be tried,
528
519
  or <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-USER-FONT-ERROR:CAPS"><code class="literal">CAIRO_STATUS_USER_FONT_ERROR</code></a> or any other error status on error.</p>
529
- <p></p>
530
520
  </div>
531
- <p class="since">Since 1.8</p>
521
+ <p class="since">Since: 1.8</p>
532
522
  </div>
533
523
  <hr>
534
524
  <div class="refsect2">
@@ -544,12 +534,11 @@ and access it from the user-font callbacks by using
544
534
  <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-font-face" title="cairo_scaled_font_get_font_face ()"><code class="function">cairo_scaled_font_get_font_face()</code></a> followed by
545
535
  <a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-get-user-data" title="cairo_font_face_get_user_data ()"><code class="function">cairo_font_face_get_user_data()</code></a>.</p>
546
536
  <div class="refsect3">
547
- <a name="id-1.4.8.7.6.7"></a><h4>Returns</h4>
537
+ <a name="cairo-user-font-face-create.returns"></a><h4>Returns</h4>
548
538
  <p> a newly created <a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a>. Free with
549
539
  <a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-destroy" title="cairo_font_face_destroy ()"><code class="function">cairo_font_face_destroy()</code></a> when you are done using it.</p>
550
- <p></p>
551
540
  </div>
552
- <p class="since">Since 1.8</p>
541
+ <p class="since">Since: 1.8</p>
553
542
  </div>
554
543
  <hr>
555
544
  <div class="refsect2">
@@ -564,8 +553,8 @@ works.</p>
564
553
  error will occur. A user font-face is immutable as soon as a scaled-font
565
554
  is created from it.</p>
566
555
  <div class="refsect3">
567
- <a name="id-1.4.8.7.7.6"></a><h4>Parameters</h4>
568
- <div class="informaltable"><table width="100%" border="0">
556
+ <a name="cairo-user-font-face-set-init-func.parameters"></a><h4>Parameters</h4>
557
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
569
558
  <colgroup>
570
559
  <col width="150px" class="parameters_name">
571
560
  <col class="parameters_description">
@@ -585,7 +574,7 @@ is created from it.</p>
585
574
  </tbody>
586
575
  </table></div>
587
576
  </div>
588
- <p class="since">Since 1.8</p>
577
+ <p class="since">Since: 1.8</p>
589
578
  </div>
590
579
  <hr>
591
580
  <div class="refsect2">
@@ -594,8 +583,8 @@ is created from it.</p>
594
583
  cairo_user_font_face_get_init_func (<em class="parameter"><code><a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a> *font_face</code></em>);</pre>
595
584
  <p>Gets the scaled-font initialization function of a user-font.</p>
596
585
  <div class="refsect3">
597
- <a name="id-1.4.8.7.8.5"></a><h4>Parameters</h4>
598
- <div class="informaltable"><table width="100%" border="0">
586
+ <a name="cairo-user-font-face-get-init-func.parameters"></a><h4>Parameters</h4>
587
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
599
588
  <colgroup>
600
589
  <col width="150px" class="parameters_name">
601
590
  <col class="parameters_description">
@@ -609,12 +598,11 @@ cairo_user_font_face_get_init_func (<em class="parameter"><code><a class="link"
609
598
  </table></div>
610
599
  </div>
611
600
  <div class="refsect3">
612
- <a name="id-1.4.8.7.8.6"></a><h4>Returns</h4>
601
+ <a name="cairo-user-font-face-get-init-func.returns"></a><h4>Returns</h4>
613
602
  <p> The init callback of <em class="parameter"><code>font_face</code></em>
614
603
  or <code class="literal">NULL</code> if none set or an error has occurred.</p>
615
- <p></p>
616
604
  </div>
617
- <p class="since">Since 1.8</p>
605
+ <p class="since">Since: 1.8</p>
618
606
  </div>
619
607
  <hr>
620
608
  <div class="refsect2">
@@ -634,8 +622,8 @@ If the callback is <code class="literal">NULL</code> and a glyph is tried to be
634
622
  <em class="parameter"><code>font_face</code></em>
635
623
  , a <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-USER-FONT-ERROR:CAPS"><code class="literal">CAIRO_STATUS_USER_FONT_ERROR</code></a> will occur.</p>
636
624
  <div class="refsect3">
637
- <a name="id-1.4.8.7.9.7"></a><h4>Parameters</h4>
638
- <div class="informaltable"><table width="100%" border="0">
625
+ <a name="cairo-user-font-face-set-render-glyph-func.parameters"></a><h4>Parameters</h4>
626
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
639
627
  <colgroup>
640
628
  <col width="150px" class="parameters_name">
641
629
  <col class="parameters_description">
@@ -655,7 +643,7 @@ If the callback is <code class="literal">NULL</code> and a glyph is tried to be
655
643
  </tbody>
656
644
  </table></div>
657
645
  </div>
658
- <p class="since">Since 1.8</p>
646
+ <p class="since">Since: 1.8</p>
659
647
  </div>
660
648
  <hr>
661
649
  <div class="refsect2">
@@ -665,8 +653,8 @@ cairo_user_font_face_get_render_glyph_func
665
653
  (<em class="parameter"><code><a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a> *font_face</code></em>);</pre>
666
654
  <p>Gets the glyph rendering function of a user-font.</p>
667
655
  <div class="refsect3">
668
- <a name="id-1.4.8.7.10.5"></a><h4>Parameters</h4>
669
- <div class="informaltable"><table width="100%" border="0">
656
+ <a name="cairo-user-font-face-get-render-glyph-func.parameters"></a><h4>Parameters</h4>
657
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
670
658
  <colgroup>
671
659
  <col width="150px" class="parameters_name">
672
660
  <col class="parameters_description">
@@ -680,12 +668,11 @@ cairo_user_font_face_get_render_glyph_func
680
668
  </table></div>
681
669
  </div>
682
670
  <div class="refsect3">
683
- <a name="id-1.4.8.7.10.6"></a><h4>Returns</h4>
671
+ <a name="cairo-user-font-face-get-render-glyph-func.returns"></a><h4>Returns</h4>
684
672
  <p> The render_glyph callback of <em class="parameter"><code>font_face</code></em>
685
673
  or <code class="literal">NULL</code> if none set or an error has occurred.</p>
686
- <p></p>
687
674
  </div>
688
- <p class="since">Since 1.8</p>
675
+ <p class="since">Since: 1.8</p>
689
676
  </div>
690
677
  <hr>
691
678
  <div class="refsect2">
@@ -701,8 +688,8 @@ works.</p>
701
688
  error will occur. A user font-face is immutable as soon as a scaled-font
702
689
  is created from it.</p>
703
690
  <div class="refsect3">
704
- <a name="id-1.4.8.7.11.6"></a><h4>Parameters</h4>
705
- <div class="informaltable"><table width="100%" border="0">
691
+ <a name="cairo-user-font-face-set-unicode-to-glyph-func.parameters"></a><h4>Parameters</h4>
692
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
706
693
  <colgroup>
707
694
  <col width="150px" class="parameters_name">
708
695
  <col class="parameters_description">
@@ -722,7 +709,7 @@ is created from it.</p>
722
709
  </tbody>
723
710
  </table></div>
724
711
  </div>
725
- <p class="since">Since 1.8</p>
712
+ <p class="since">Since: 1.8</p>
726
713
  </div>
727
714
  <hr>
728
715
  <div class="refsect2">
@@ -732,8 +719,8 @@ cairo_user_font_face_get_unicode_to_glyph_func
732
719
  (<em class="parameter"><code><a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a> *font_face</code></em>);</pre>
733
720
  <p>Gets the unicode-to-glyph conversion function of a user-font.</p>
734
721
  <div class="refsect3">
735
- <a name="id-1.4.8.7.12.5"></a><h4>Parameters</h4>
736
- <div class="informaltable"><table width="100%" border="0">
722
+ <a name="cairo-user-font-face-get-unicode-to-glyph-func.parameters"></a><h4>Parameters</h4>
723
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
737
724
  <colgroup>
738
725
  <col width="150px" class="parameters_name">
739
726
  <col class="parameters_description">
@@ -747,12 +734,11 @@ cairo_user_font_face_get_unicode_to_glyph_func
747
734
  </table></div>
748
735
  </div>
749
736
  <div class="refsect3">
750
- <a name="id-1.4.8.7.12.6"></a><h4>Returns</h4>
737
+ <a name="cairo-user-font-face-get-unicode-to-glyph-func.returns"></a><h4>Returns</h4>
751
738
  <p> The unicode_to_glyph callback of <em class="parameter"><code>font_face</code></em>
752
739
  or <code class="literal">NULL</code> if none set or an error occurred.</p>
753
- <p></p>
754
740
  </div>
755
- <p class="since">Since 1.8</p>
741
+ <p class="since">Since: 1.8</p>
756
742
  </div>
757
743
  <hr>
758
744
  <div class="refsect2">
@@ -768,8 +754,8 @@ works.</p>
768
754
  error will occur. A user font-face is immutable as soon as a scaled-font
769
755
  is created from it.</p>
770
756
  <div class="refsect3">
771
- <a name="id-1.4.8.7.13.6"></a><h4>Parameters</h4>
772
- <div class="informaltable"><table width="100%" border="0">
757
+ <a name="cairo-user-font-face-set-text-to-glyphs-func.parameters"></a><h4>Parameters</h4>
758
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
773
759
  <colgroup>
774
760
  <col width="150px" class="parameters_name">
775
761
  <col class="parameters_description">
@@ -789,7 +775,7 @@ is created from it.</p>
789
775
  </tbody>
790
776
  </table></div>
791
777
  </div>
792
- <p class="since">Since 1.8</p>
778
+ <p class="since">Since: 1.8</p>
793
779
  </div>
794
780
  <hr>
795
781
  <div class="refsect2">
@@ -799,8 +785,8 @@ cairo_user_font_face_get_text_to_glyphs_func
799
785
  (<em class="parameter"><code><a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a> *font_face</code></em>);</pre>
800
786
  <p>Gets the text-to-glyphs conversion function of a user-font.</p>
801
787
  <div class="refsect3">
802
- <a name="id-1.4.8.7.14.5"></a><h4>Parameters</h4>
803
- <div class="informaltable"><table width="100%" border="0">
788
+ <a name="cairo-user-font-face-get-text-to-glyphs-func.parameters"></a><h4>Parameters</h4>
789
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
804
790
  <colgroup>
805
791
  <col width="150px" class="parameters_name">
806
792
  <col class="parameters_description">
@@ -814,12 +800,11 @@ cairo_user_font_face_get_text_to_glyphs_func
814
800
  </table></div>
815
801
  </div>
816
802
  <div class="refsect3">
817
- <a name="id-1.4.8.7.14.6"></a><h4>Returns</h4>
803
+ <a name="cairo-user-font-face-get-text-to-glyphs-func.returns"></a><h4>Returns</h4>
818
804
  <p> The text_to_glyphs callback of <em class="parameter"><code>font_face</code></em>
819
805
  or <code class="literal">NULL</code> if none set or an error occurred.</p>
820
- <p></p>
821
806
  </div>
822
- <p class="since">Since 1.8</p>
807
+ <p class="since">Since: 1.8</p>
823
808
  </div>
824
809
  </div>
825
810
  <div class="refsect1">
@@ -832,12 +817,11 @@ or <code class="literal">NULL</code> if none set or an error occurred.</p>
832
817
  This macro can be used to conditionally compile backend-specific code.
833
818
  The user font backend is always built in versions of cairo that support
834
819
  this feature (1.8 and later).</p>
835
- <p class="since">Since 1.8</p>
820
+ <p class="since">Since: 1.8</p>
836
821
  </div>
837
822
  </div>
838
823
  </div>
839
824
  <div class="footer">
840
- <hr>
841
- Generated by GTK-Doc V1.20</div>
825
+ <hr>Generated by GTK-Doc V1.25</div>
842
826
  </body>
843
827
  </html>
@@ -2,21 +2,20 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
- <title>Cairo: A Vector Graphics Library: Version Information</title>
6
- <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
5
+ <title>Version Information: Cairo: A Vector Graphics Library</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
7
7
  <link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
8
8
  <link rel="up" href="cairo-support.html" title="Utilities">
9
9
  <link rel="prev" href="cairo-Error-handling.html" title="Error handling">
10
10
  <link rel="next" href="cairo-Types.html" title="Types">
11
- <meta name="generator" content="GTK-Doc V1.20 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.25 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
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">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
16
  <td width="100%" align="left" class="shortcuts">
17
- <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
18
- <a href="#cairo-Version-Information.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
19
- <a href="#cairo-Version-Information.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#cairo-Version-Information.description" class="shortcut">Description</a></span>
20
19
  </td>
21
20
  <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22
21
  <td><a accesskey="u" href="cairo-support.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
@@ -34,7 +33,7 @@
34
33
  </tr></table></div>
35
34
  <div class="refsect1">
36
35
  <a name="cairo-Version-Information.functions"></a><h2>Functions</h2>
37
- <div class="informaltable"><table width="100%" border="0">
36
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
38
37
  <colgroup>
39
38
  <col width="150px" class="functions_return">
40
39
  <col class="functions_name">
@@ -72,7 +71,7 @@
72
71
  </div>
73
72
  <div class="refsect1">
74
73
  <a name="cairo-Version-Information.other"></a><h2>Types and Values</h2>
75
- <div class="informaltable"><table width="100%" border="0">
74
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
76
75
  <colgroup>
77
76
  <col width="150px" class="name">
78
77
  <col class="description">
@@ -102,11 +101,6 @@
102
101
  </table></div>
103
102
  </div>
104
103
  <div class="refsect1">
105
- <a name="cairo-Version-Information.object-hierarchy"></a><h2>Object Hierarchy</h2>
106
- <pre class="screen">
107
- </pre>
108
- </div>
109
- <div class="refsect1">
110
104
  <a name="cairo-Version-Information.description"></a><h2>Description</h2>
111
105
  <p>Cairo has a three-part version number scheme. In this scheme, we use
112
106
  even vs. odd numbers to distinguish fixed points in the software
@@ -137,7 +131,7 @@ In-progress development (eg. from git)
137
131
  1.1.1 - Development on head (toward 1.1.2 snapshot and 1.2.0 release)
138
132
  </pre></div>
139
133
  <div class="refsect2">
140
- <a name="id-1.6.4.6.6"></a><h3>Compatibility</h3>
134
+ <a name="id-1.6.4.5.6"></a><h3>Compatibility</h3>
141
135
 
142
136
  The API/ABI compatibility guarantees for various versions are as
143
137
  follows. First, let's assume some cairo-using application code that is
@@ -162,7 +156,7 @@ rather the many states between snapshots and releases.
162
156
  </div>
163
157
  <hr>
164
158
  <div class="refsect2">
165
- <a name="id-1.6.4.6.7"></a><h3>Examining the version</h3>
159
+ <a name="id-1.6.4.5.7"></a><h3>Examining the version</h3>
166
160
 
167
161
  Cairo provides the ability to examine the version at either
168
162
  compile-time or run-time and in both a human-readable form as well as
@@ -204,8 +198,8 @@ returned by <a class="link" href="cairo-Version-Information.html#CAIRO-VERSION:C
204
198
  Two encoded version numbers can be compared as integers. The encoding ensures
205
199
  that later versions compare greater than earlier versions.</p>
206
200
  <div class="refsect3">
207
- <a name="id-1.6.4.7.2.5"></a><h4>Parameters</h4>
208
- <div class="informaltable"><table width="100%" border="0">
201
+ <a name="CAIRO-VERSION-ENCODE.parameters"></a><h4>Parameters</h4>
202
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
209
203
  <colgroup>
210
204
  <col width="150px" class="parameters_name">
211
205
  <col class="parameters_description">
@@ -231,11 +225,10 @@ that later versions compare greater than earlier versions.</p>
231
225
  </table></div>
232
226
  </div>
233
227
  <div class="refsect3">
234
- <a name="id-1.6.4.7.2.6"></a><h4>Returns</h4>
228
+ <a name="CAIRO-VERSION-ENCODE.returns"></a><h4>Returns</h4>
235
229
  <p> the encoded version.</p>
236
- <p></p>
237
230
  </div>
238
- <p class="since">Since 1.0</p>
231
+ <p class="since">Since: 1.0</p>
239
232
  </div>
240
233
  <hr>
241
234
  <div class="refsect2">
@@ -245,8 +238,8 @@ that later versions compare greater than earlier versions.</p>
245
238
  returned by <a class="link" href="cairo-Version-Information.html#CAIRO-VERSION-STRING:CAPS" title="CAIRO_VERSION_STRING"><code class="literal">CAIRO_VERSION_STRING</code></a> and <a class="link" href="cairo-Version-Information.html#cairo-version-string" title="cairo_version_string ()"><code class="function">cairo_version_string()</code></a> are encoded using this macro.
246
239
  The parameters to this macro must expand to numerical literals.</p>
247
240
  <div class="refsect3">
248
- <a name="id-1.6.4.7.3.5"></a><h4>Parameters</h4>
249
- <div class="informaltable"><table width="100%" border="0">
241
+ <a name="CAIRO-VERSION-STRINGIZE.parameters"></a><h4>Parameters</h4>
242
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
250
243
  <colgroup>
251
244
  <col width="150px" class="parameters_name">
252
245
  <col class="parameters_description">
@@ -272,11 +265,10 @@ The parameters to this macro must expand to numerical literals.</p>
272
265
  </table></div>
273
266
  </div>
274
267
  <div class="refsect3">
275
- <a name="id-1.6.4.7.3.6"></a><h4>Returns</h4>
268
+ <a name="CAIRO-VERSION-STRINGIZE.returns"></a><h4>Returns</h4>
276
269
  <p> a string literal containing the version.</p>
277
- <p></p>
278
270
  </div>
279
- <p class="since">Since 1.8</p>
271
+ <p class="since">Since: 1.8</p>
280
272
  </div>
281
273
  <hr>
282
274
  <div class="refsect2">
@@ -294,11 +286,10 @@ if (cairo_version() &gt;= CAIRO_VERSION_ENCODE(X,Y,Z)) {...}
294
286
  <p>See also <a class="link" href="cairo-Version-Information.html#cairo-version-string" title="cairo_version_string ()"><code class="function">cairo_version_string()</code></a> as well as the compile-time
295
287
  equivalents <a class="link" href="cairo-Version-Information.html#CAIRO-VERSION:CAPS" title="CAIRO_VERSION"><code class="literal">CAIRO_VERSION</code></a> and <a class="link" href="cairo-Version-Information.html#CAIRO-VERSION-STRING:CAPS" title="CAIRO_VERSION_STRING"><code class="literal">CAIRO_VERSION_STRING</code></a>.</p>
296
288
  <div class="refsect3">
297
- <a name="id-1.6.4.7.4.8"></a><h4>Returns</h4>
289
+ <a name="cairo-version.returns"></a><h4>Returns</h4>
298
290
  <p> the encoded version.</p>
299
- <p></p>
300
291
  </div>
301
- <p class="since">Since 1.0</p>
292
+ <p class="since">Since: 1.0</p>
302
293
  </div>
303
294
  <hr>
304
295
  <div class="refsect2">
@@ -310,11 +301,10 @@ of the form "X.Y.Z".</p>
310
301
  <p>See also <a class="link" href="cairo-Version-Information.html#cairo-version" title="cairo_version ()"><code class="function">cairo_version()</code></a> as well as the compile-time equivalents
311
302
  <a class="link" href="cairo-Version-Information.html#CAIRO-VERSION-STRING:CAPS" title="CAIRO_VERSION_STRING"><code class="literal">CAIRO_VERSION_STRING</code></a> and <a class="link" href="cairo-Version-Information.html#CAIRO-VERSION:CAPS" title="CAIRO_VERSION"><code class="literal">CAIRO_VERSION</code></a>.</p>
312
303
  <div class="refsect3">
313
- <a name="id-1.6.4.7.5.6"></a><h4>Returns</h4>
304
+ <a name="cairo-version-string.returns"></a><h4>Returns</h4>
314
305
  <p> a string containing the version.</p>
315
- <p></p>
316
306
  </div>
317
- <p class="since">Since 1.0</p>
307
+ <p class="since">Since: 1.0</p>
318
308
  </div>
319
309
  </div>
320
310
  <div class="refsect1">
@@ -324,7 +314,7 @@ of the form "X.Y.Z".</p>
324
314
  <pre class="programlisting">#define CAIRO_VERSION</pre>
325
315
  <p>The version of cairo available at compile-time, encoded using
326
316
  <a class="link" href="cairo-Version-Information.html#CAIRO-VERSION-ENCODE:CAPS" title="CAIRO_VERSION_ENCODE()"><code class="function">CAIRO_VERSION_ENCODE()</code></a>.</p>
327
- <p class="since">Since 1.0</p>
317
+ <p class="since">Since: 1.0</p>
328
318
  </div>
329
319
  <hr>
330
320
  <div class="refsect2">
@@ -332,7 +322,7 @@ of the form "X.Y.Z".</p>
332
322
  <pre class="programlisting">#define CAIRO_VERSION_MAJOR USE_cairo_version_OR_cairo_version_string_INSTEAD
333
323
  </pre>
334
324
  <p>The major component of the version of cairo available at compile-time.</p>
335
- <p class="since">Since 1.0</p>
325
+ <p class="since">Since: 1.0</p>
336
326
  </div>
337
327
  <hr>
338
328
  <div class="refsect2">
@@ -340,7 +330,7 @@ of the form "X.Y.Z".</p>
340
330
  <pre class="programlisting">#define CAIRO_VERSION_MINOR USE_cairo_version_OR_cairo_version_string_INSTEAD
341
331
  </pre>
342
332
  <p>The minor component of the version of cairo available at compile-time.</p>
343
- <p class="since">Since 1.0</p>
333
+ <p class="since">Since: 1.0</p>
344
334
  </div>
345
335
  <hr>
346
336
  <div class="refsect2">
@@ -348,7 +338,7 @@ of the form "X.Y.Z".</p>
348
338
  <pre class="programlisting">#define CAIRO_VERSION_MICRO USE_cairo_version_OR_cairo_version_string_INSTEAD
349
339
  </pre>
350
340
  <p>The micro component of the version of cairo available at compile-time.</p>
351
- <p class="since">Since 1.0</p>
341
+ <p class="since">Since: 1.0</p>
352
342
  </div>
353
343
  <hr>
354
344
  <div class="refsect2">
@@ -356,12 +346,11 @@ of the form "X.Y.Z".</p>
356
346
  <pre class="programlisting">#define CAIRO_VERSION_STRING</pre>
357
347
  <p>A human-readable string literal containing the version of cairo available
358
348
  at compile-time, in the form of "X.Y.Z".</p>
359
- <p class="since">Since 1.8</p>
349
+ <p class="since">Since: 1.8</p>
360
350
  </div>
361
351
  </div>
362
352
  </div>
363
353
  <div class="footer">
364
- <hr>
365
- Generated by GTK-Doc V1.20</div>
354
+ <hr>Generated by GTK-Doc V1.25</div>
366
355
  </body>
367
356
  </html>