cairo 1.15.9-x64-mingw32 → 1.15.10-x64-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: cairo_matrix_t</title>
6
- <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
5
+ <title>cairo_matrix_t: 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-support.html" title="Utilities">
10
10
  <link rel="next" href="cairo-Error-handling.html" title="Error handling">
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-cairo-matrix-t.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
19
- <a href="#cairo-cairo-matrix-t.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-cairo-matrix-t.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-cairo-matrix-t.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">
@@ -141,7 +140,7 @@
141
140
  </div>
142
141
  <div class="refsect1">
143
142
  <a name="cairo-cairo-matrix-t.other"></a><h2>Types and Values</h2>
144
- <div class="informaltable"><table width="100%" border="0">
143
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
145
144
  <colgroup>
146
145
  <col width="150px" class="name">
147
146
  <col class="description">
@@ -153,11 +152,6 @@
153
152
  </table></div>
154
153
  </div>
155
154
  <div class="refsect1">
156
- <a name="cairo-cairo-matrix-t.object-hierarchy"></a><h2>Object Hierarchy</h2>
157
- <pre class="screen">
158
- </pre>
159
- </div>
160
- <div class="refsect1">
161
155
  <a name="cairo-cairo-matrix-t.description"></a><h2>Description</h2>
162
156
  <p><a class="link" href="cairo-cairo-matrix-t.html#cairo-matrix-t" title="cairo_matrix_t"><span class="type">cairo_matrix_t</span></a> is used throughout cairo to convert between different
163
157
  coordinate spaces. A <a class="link" href="cairo-cairo-matrix-t.html#cairo-matrix-t" title="cairo_matrix_t"><span class="type">cairo_matrix_t</span></a> holds an affine transformation,
@@ -200,8 +194,8 @@ by:</p>
200
194
  y_new = yx * x + yy * y + y0;
201
195
  </pre>
202
196
  <div class="refsect3">
203
- <a name="id-1.6.2.7.2.6"></a><h4>Parameters</h4>
204
- <div class="informaltable"><table width="100%" border="0">
197
+ <a name="cairo-matrix-init.parameters"></a><h4>Parameters</h4>
198
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
205
199
  <colgroup>
206
200
  <col width="150px" class="parameters_name">
207
201
  <col class="parameters_description">
@@ -246,7 +240,7 @@ by:</p>
246
240
  </tbody>
247
241
  </table></div>
248
242
  </div>
249
- <p class="since">Since 1.0</p>
243
+ <p class="since">Since: 1.0</p>
250
244
  </div>
251
245
  <hr>
252
246
  <div class="refsect2">
@@ -256,8 +250,8 @@ cairo_matrix_init_identity (<em class="parameter"><code><a class="link" href="ca
256
250
  <p>Modifies <em class="parameter"><code>matrix</code></em>
257
251
  to be an identity transformation.</p>
258
252
  <div class="refsect3">
259
- <a name="id-1.6.2.7.3.5"></a><h4>Parameters</h4>
260
- <div class="informaltable"><table width="100%" border="0">
253
+ <a name="cairo-matrix-init-identity.parameters"></a><h4>Parameters</h4>
254
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
261
255
  <colgroup>
262
256
  <col width="150px" class="parameters_name">
263
257
  <col class="parameters_description">
@@ -270,7 +264,7 @@ cairo_matrix_init_identity (<em class="parameter"><code><a class="link" href="ca
270
264
  </tr></tbody>
271
265
  </table></div>
272
266
  </div>
273
- <p class="since">Since 1.0</p>
267
+ <p class="since">Since: 1.0</p>
274
268
  </div>
275
269
  <hr>
276
270
  <div class="refsect2">
@@ -285,8 +279,8 @@ cairo_matrix_init_translate (<em class="parameter"><code><a class="link" href="c
285
279
  <em class="parameter"><code>ty</code></em>
286
280
  in the X and Y dimensions, respectively.</p>
287
281
  <div class="refsect3">
288
- <a name="id-1.6.2.7.4.5"></a><h4>Parameters</h4>
289
- <div class="informaltable"><table width="100%" border="0">
282
+ <a name="cairo-matrix-init-translate.parameters"></a><h4>Parameters</h4>
283
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
290
284
  <colgroup>
291
285
  <col width="150px" class="parameters_name">
292
286
  <col class="parameters_description">
@@ -311,7 +305,7 @@ cairo_matrix_init_translate (<em class="parameter"><code><a class="link" href="c
311
305
  </tbody>
312
306
  </table></div>
313
307
  </div>
314
- <p class="since">Since 1.0</p>
308
+ <p class="since">Since: 1.0</p>
315
309
  </div>
316
310
  <hr>
317
311
  <div class="refsect2">
@@ -326,8 +320,8 @@ cairo_matrix_init_scale (<em class="parameter"><code><a class="link" href="cairo
326
320
 
327
321
  in the X and Y dimensions, respectively.</p>
328
322
  <div class="refsect3">
329
- <a name="id-1.6.2.7.5.5"></a><h4>Parameters</h4>
330
- <div class="informaltable"><table width="100%" border="0">
323
+ <a name="cairo-matrix-init-scale.parameters"></a><h4>Parameters</h4>
324
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
331
325
  <colgroup>
332
326
  <col width="150px" class="parameters_name">
333
327
  <col class="parameters_description">
@@ -352,7 +346,7 @@ in the X and Y dimensions, respectively.</p>
352
346
  </tbody>
353
347
  </table></div>
354
348
  </div>
355
- <p class="since">Since 1.0</p>
349
+ <p class="since">Since: 1.0</p>
356
350
  </div>
357
351
  <hr>
358
352
  <div class="refsect2">
@@ -364,8 +358,8 @@ cairo_matrix_init_rotate (<em class="parameter"><code><a class="link" href="cair
364
358
  to a transformation that rotates by <em class="parameter"><code>radians</code></em>
365
359
  .</p>
366
360
  <div class="refsect3">
367
- <a name="id-1.6.2.7.6.5"></a><h4>Parameters</h4>
368
- <div class="informaltable"><table width="100%" border="0">
361
+ <a name="cairo-matrix-init-rotate.parameters"></a><h4>Parameters</h4>
362
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
369
363
  <colgroup>
370
364
  <col width="150px" class="parameters_name">
371
365
  <col class="parameters_description">
@@ -389,7 +383,7 @@ direction.</p></td>
389
383
  </tbody>
390
384
  </table></div>
391
385
  </div>
392
- <p class="since">Since 1.0</p>
386
+ <p class="since">Since: 1.0</p>
393
387
  </div>
394
388
  <hr>
395
389
  <div class="refsect2">
@@ -408,8 +402,8 @@ the coordinates by <em class="parameter"><code>tx</code></em>
408
402
  , then apply the original transformation
409
403
  to the coordinates.</p>
410
404
  <div class="refsect3">
411
- <a name="id-1.6.2.7.7.5"></a><h4>Parameters</h4>
412
- <div class="informaltable"><table width="100%" border="0">
405
+ <a name="cairo-matrix-translate.parameters"></a><h4>Parameters</h4>
406
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
413
407
  <colgroup>
414
408
  <col width="150px" class="parameters_name">
415
409
  <col class="parameters_description">
@@ -434,7 +428,7 @@ to the coordinates.</p>
434
428
  </tbody>
435
429
  </table></div>
436
430
  </div>
437
- <p class="since">Since 1.0</p>
431
+ <p class="since">Since: 1.0</p>
438
432
  </div>
439
433
  <hr>
440
434
  <div class="refsect2">
@@ -452,8 +446,8 @@ by <em class="parameter"><code>sx</code></em>
452
446
  and <em class="parameter"><code>sy</code></em>
453
447
  , then apply the original transformation to the coordinates.</p>
454
448
  <div class="refsect3">
455
- <a name="id-1.6.2.7.8.5"></a><h4>Parameters</h4>
456
- <div class="informaltable"><table width="100%" border="0">
449
+ <a name="cairo-matrix-scale.parameters"></a><h4>Parameters</h4>
450
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
457
451
  <colgroup>
458
452
  <col width="150px" class="parameters_name">
459
453
  <col class="parameters_description">
@@ -478,7 +472,7 @@ by <em class="parameter"><code>sx</code></em>
478
472
  </tbody>
479
473
  </table></div>
480
474
  </div>
481
- <p class="since">Since 1.0</p>
475
+ <p class="since">Since: 1.0</p>
482
476
  </div>
483
477
  <hr>
484
478
  <div class="refsect2">
@@ -494,8 +488,8 @@ coordinates by <em class="parameter"><code>radians</code></em>
494
488
  , then apply the original transformation
495
489
  to the coordinates.</p>
496
490
  <div class="refsect3">
497
- <a name="id-1.6.2.7.9.5"></a><h4>Parameters</h4>
498
- <div class="informaltable"><table width="100%" border="0">
491
+ <a name="cairo-matrix-rotate.parameters"></a><h4>Parameters</h4>
492
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
499
493
  <colgroup>
500
494
  <col width="150px" class="parameters_name">
501
495
  <col class="parameters_description">
@@ -519,7 +513,7 @@ direction.</p></td>
519
513
  </tbody>
520
514
  </table></div>
521
515
  </div>
522
- <p class="since">Since 1.0</p>
516
+ <p class="since">Since: 1.0</p>
523
517
  </div>
524
518
  <hr>
525
519
  <div class="refsect2">
@@ -532,8 +526,8 @@ all transformation matrices have inverses; if the matrix
532
526
  collapses points together (it is <em class="firstterm">degenerate</em>),
533
527
  then it has no inverse and this function will fail.</p>
534
528
  <div class="refsect3">
535
- <a name="id-1.6.2.7.10.5"></a><h4>Parameters</h4>
536
- <div class="informaltable"><table width="100%" border="0">
529
+ <a name="cairo-matrix-invert.parameters"></a><h4>Parameters</h4>
530
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
537
531
  <colgroup>
538
532
  <col width="150px" class="parameters_name">
539
533
  <col class="parameters_description">
@@ -547,15 +541,14 @@ then it has no inverse and this function will fail.</p>
547
541
  </table></div>
548
542
  </div>
549
543
  <div class="refsect3">
550
- <a name="id-1.6.2.7.10.6"></a><h4>Returns</h4>
544
+ <a name="cairo-matrix-invert.returns"></a><h4>Returns</h4>
551
545
  <p> If <em class="parameter"><code>matrix</code></em>
552
546
  has an inverse, modifies <em class="parameter"><code>matrix</code></em>
553
547
  to
554
548
  be the inverse matrix and returns <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a>. Otherwise,
555
549
  returns <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-MATRIX:CAPS"><code class="literal">CAIRO_STATUS_INVALID_MATRIX</code></a>.</p>
556
- <p></p>
557
550
  </div>
558
- <p class="since">Since 1.0</p>
551
+ <p class="since">Since: 1.0</p>
559
552
  </div>
560
553
  <hr>
561
554
  <div class="refsect2">
@@ -579,8 +572,8 @@ coordinates.</p>
579
572
  or <em class="parameter"><code>b</code></em>
580
573
  .</p>
581
574
  <div class="refsect3">
582
- <a name="id-1.6.2.7.11.6"></a><h4>Parameters</h4>
583
- <div class="informaltable"><table width="100%" border="0">
575
+ <a name="cairo-matrix-multiply.parameters"></a><h4>Parameters</h4>
576
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
584
577
  <colgroup>
585
578
  <col width="150px" class="parameters_name">
586
579
  <col class="parameters_description">
@@ -605,7 +598,7 @@ coordinates.</p>
605
598
  </tbody>
606
599
  </table></div>
607
600
  </div>
608
- <p class="since">Since 1.0</p>
601
+ <p class="since">Since: 1.0</p>
609
602
  </div>
610
603
  <hr>
611
604
  <div class="refsect2">
@@ -644,8 +637,8 @@ to (<em class="parameter"><code>x2</code></em>
644
637
  and <em class="parameter"><code>x2</code></em>
645
638
  .</p>
646
639
  <div class="refsect3">
647
- <a name="id-1.6.2.7.12.7"></a><h4>Parameters</h4>
648
- <div class="informaltable"><table width="100%" border="0">
640
+ <a name="cairo-matrix-transform-distance.parameters"></a><h4>Parameters</h4>
641
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
649
642
  <colgroup>
650
643
  <col width="150px" class="parameters_name">
651
644
  <col class="parameters_description">
@@ -670,7 +663,7 @@ to (<em class="parameter"><code>x2</code></em>
670
663
  </tbody>
671
664
  </table></div>
672
665
  </div>
673
- <p class="since">Since 1.0</p>
666
+ <p class="since">Since: 1.0</p>
674
667
  </div>
675
668
  <hr>
676
669
  <div class="refsect2">
@@ -684,8 +677,8 @@ cairo_matrix_transform_point (<em class="parameter"><code>const <a class="link"
684
677
  ) by <em class="parameter"><code>matrix</code></em>
685
678
  .</p>
686
679
  <div class="refsect3">
687
- <a name="id-1.6.2.7.13.5"></a><h4>Parameters</h4>
688
- <div class="informaltable"><table width="100%" border="0">
680
+ <a name="cairo-matrix-transform-point.parameters"></a><h4>Parameters</h4>
681
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
689
682
  <colgroup>
690
683
  <col width="150px" class="parameters_name">
691
684
  <col class="parameters_description">
@@ -710,7 +703,7 @@ cairo_matrix_transform_point (<em class="parameter"><code>const <a class="link"
710
703
  </tbody>
711
704
  </table></div>
712
705
  </div>
713
- <p class="since">Since 1.0</p>
706
+ <p class="since">Since: 1.0</p>
714
707
  </div>
715
708
  </div>
716
709
  <div class="refsect1">
@@ -731,8 +724,8 @@ a point (x, y) is given by:</p>
731
724
  y_new = yx * x + yy * y + y0;
732
725
  </pre>
733
726
  <div class="refsect3">
734
- <a name="id-1.6.2.8.2.6"></a><h4>Members</h4>
735
- <div class="informaltable"><table width="100%" border="0">
727
+ <a name="cairo-matrix-t.members"></a><h4>Members</h4>
728
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
736
729
  <colgroup>
737
730
  <col width="300px" class="struct_members_name">
738
731
  <col class="struct_members_description">
@@ -772,7 +765,7 @@ a point (x, y) is given by:</p>
772
765
  </tbody>
773
766
  </table></div>
774
767
  </div>
775
- <p class="since">Since 1.0</p>
768
+ <p class="since">Since: 1.0</p>
776
769
  </div>
777
770
  </div>
778
771
  <div class="refsect1">
@@ -781,7 +774,6 @@ a point (x, y) is given by:</p>
781
774
  </div>
782
775
  </div>
783
776
  <div class="footer">
784
- <hr>
785
- Generated by GTK-Doc V1.20</div>
777
+ <hr>Generated by GTK-Doc V1.25</div>
786
778
  </body>
787
779
  </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: cairo_pattern_t</title>
6
- <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
5
+ <title>cairo_pattern_t: 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-drawing.html" title="Drawing">
9
9
  <link rel="prev" href="cairo-Paths.html" title="Paths">
10
10
  <link rel="next" href="cairo-Regions.html" title="Regions">
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-cairo-pattern-t.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
19
- <a href="#cairo-cairo-pattern-t.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-cairo-pattern-t.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-drawing.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-cairo-pattern-t.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">
@@ -356,7 +355,7 @@
356
355
  </div>
357
356
  <div class="refsect1">
358
357
  <a name="cairo-cairo-pattern-t.other"></a><h2>Types and Values</h2>
359
- <div class="informaltable"><table width="100%" border="0">
358
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
360
359
  <colgroup>
361
360
  <col width="150px" class="name">
362
361
  <col class="description">
@@ -382,11 +381,6 @@
382
381
  </table></div>
383
382
  </div>
384
383
  <div class="refsect1">
385
- <a name="cairo-cairo-pattern-t.object-hierarchy"></a><h2>Object Hierarchy</h2>
386
- <pre class="screen">
387
- </pre>
388
- </div>
389
- <div class="refsect1">
390
384
  <a name="cairo-cairo-pattern-t.description"></a><h2>Description</h2>
391
385
  <p><a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-t" title="cairo_pattern_t"><span class="type">cairo_pattern_t</span></a> is the paint with which cairo draws.
392
386
  The primary use of patterns is as the source for all cairo drawing
@@ -424,8 +418,8 @@ transitions instead of the typical blend.</p>
424
418
  radial pattern), then the pattern will be put into an error status
425
419
  with a status of <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_PATTERN_TYPE_MISMATCH</code></a>.</p>
426
420
  <div class="refsect3">
427
- <a name="id-1.3.4.7.2.8"></a><h4>Parameters</h4>
428
- <div class="informaltable"><table width="100%" border="0">
421
+ <a name="cairo-pattern-add-color-stop-rgb.parameters"></a><h4>Parameters</h4>
422
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
429
423
  <colgroup>
430
424
  <col width="150px" class="parameters_name">
431
425
  <col class="parameters_description">
@@ -460,7 +454,7 @@ with a status of <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PA
460
454
  </tbody>
461
455
  </table></div>
462
456
  </div>
463
- <p class="since">Since 1.0</p>
457
+ <p class="since">Since: 1.0</p>
464
458
  </div>
465
459
  <hr>
466
460
  <div class="refsect2">
@@ -487,8 +481,8 @@ transitions instead of the typical blend.</p>
487
481
  radial pattern), then the pattern will be put into an error status
488
482
  with a status of <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_PATTERN_TYPE_MISMATCH</code></a>.</p>
489
483
  <div class="refsect3">
490
- <a name="id-1.3.4.7.3.8"></a><h4>Parameters</h4>
491
- <div class="informaltable"><table width="100%" border="0">
484
+ <a name="cairo-pattern-add-color-stop-rgba.parameters"></a><h4>Parameters</h4>
485
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
492
486
  <colgroup>
493
487
  <col width="150px" class="parameters_name">
494
488
  <col class="parameters_description">
@@ -528,7 +522,7 @@ with a status of <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PA
528
522
  </tbody>
529
523
  </table></div>
530
524
  </div>
531
- <p class="since">Since 1.0</p>
525
+ <p class="since">Since: 1.0</p>
532
526
  </div>
533
527
  <hr>
534
528
  <div class="refsect2">
@@ -539,8 +533,8 @@ cairo_pattern_get_color_stop_count (<em class="parameter"><code><a class="link"
539
533
  <p>Gets the number of color stops specified in the given gradient
540
534
  pattern.</p>
541
535
  <div class="refsect3">
542
- <a name="id-1.3.4.7.4.5"></a><h4>Parameters</h4>
543
- <div class="informaltable"><table width="100%" border="0">
536
+ <a name="cairo-pattern-get-color-stop-count.parameters"></a><h4>Parameters</h4>
537
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
544
538
  <colgroup>
545
539
  <col width="150px" class="parameters_name">
546
540
  <col class="parameters_description">
@@ -561,14 +555,13 @@ pattern.</p>
561
555
  </table></div>
562
556
  </div>
563
557
  <div class="refsect3">
564
- <a name="id-1.3.4.7.4.6"></a><h4>Returns</h4>
558
+ <a name="cairo-pattern-get-color-stop-count.returns"></a><h4>Returns</h4>
565
559
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a>, or
566
560
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_PATTERN_TYPE_MISMATCH</code></a> if <em class="parameter"><code>pattern</code></em>
567
561
  is not a gradient
568
562
  pattern.</p>
569
- <p></p>
570
563
  </div>
571
- <p class="since">Since 1.4</p>
564
+ <p class="since">Since: 1.4</p>
572
565
  </div>
573
566
  <hr>
574
567
  <div class="refsect2">
@@ -588,8 +581,8 @@ gradient pattern. Values of <em class="parameter"><code>index</code></em>
588
581
  where n is the number returned
589
582
  by <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-get-color-stop-count" title="cairo_pattern_get_color_stop_count ()"><code class="function">cairo_pattern_get_color_stop_count()</code></a>.</p>
590
583
  <div class="refsect3">
591
- <a name="id-1.3.4.7.5.5"></a><h4>Parameters</h4>
592
- <div class="informaltable"><table width="100%" border="0">
584
+ <a name="cairo-pattern-get-color-stop-rgba.parameters"></a><h4>Parameters</h4>
585
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
593
586
  <colgroup>
594
587
  <col width="150px" class="parameters_name">
595
588
  <col class="parameters_description">
@@ -635,15 +628,14 @@ by <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-get-color-stop
635
628
  </table></div>
636
629
  </div>
637
630
  <div class="refsect3">
638
- <a name="id-1.3.4.7.5.6"></a><h4>Returns</h4>
631
+ <a name="cairo-pattern-get-color-stop-rgba.returns"></a><h4>Returns</h4>
639
632
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a>, or <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-INDEX:CAPS"><code class="literal">CAIRO_STATUS_INVALID_INDEX</code></a>
640
633
  if <em class="parameter"><code>index</code></em>
641
634
  is not valid for the given pattern. If the pattern is
642
635
  not a gradient pattern, <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_PATTERN_TYPE_MISMATCH</code></a> is
643
636
  returned.</p>
644
- <p></p>
645
637
  </div>
646
- <p class="since">Since 1.4</p>
638
+ <p class="since">Since: 1.4</p>
647
639
  </div>
648
640
  <hr>
649
641
  <div class="refsect2">
@@ -657,8 +649,8 @@ color components are floating point numbers in the range 0 to 1.
657
649
  If the values passed in are outside that range, they will be
658
650
  clamped.</p>
659
651
  <div class="refsect3">
660
- <a name="id-1.3.4.7.6.5"></a><h4>Parameters</h4>
661
- <div class="informaltable"><table width="100%" border="0">
652
+ <a name="cairo-pattern-create-rgb.parameters"></a><h4>Parameters</h4>
653
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
662
654
  <colgroup>
663
655
  <col width="150px" class="parameters_name">
664
656
  <col class="parameters_description">
@@ -684,7 +676,7 @@ clamped.</p>
684
676
  </table></div>
685
677
  </div>
686
678
  <div class="refsect3">
687
- <a name="id-1.3.4.7.6.6"></a><h4>Returns</h4>
679
+ <a name="cairo-pattern-create-rgb.returns"></a><h4>Returns</h4>
688
680
  <p> the newly created <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-t" title="cairo_pattern_t"><span class="type">cairo_pattern_t</span></a> if successful, or
689
681
  an error pattern in case of no memory. The caller owns the
690
682
  returned object and should call <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-destroy" title="cairo_pattern_destroy ()"><code class="function">cairo_pattern_destroy()</code></a> when
@@ -692,9 +684,8 @@ finished with it.</p>
692
684
  <p>This function will always return a valid pointer, but if an error
693
685
  occurred the pattern status will be set to an error. To inspect
694
686
  the status of a pattern use <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-status" title="cairo_pattern_status ()"><code class="function">cairo_pattern_status()</code></a>.</p>
695
- <p></p>
696
687
  </div>
697
- <p class="since">Since 1.0</p>
688
+ <p class="since">Since: 1.0</p>
698
689
  </div>
699
690
  <hr>
700
691
  <div class="refsect2">
@@ -709,8 +700,8 @@ The color components are floating point numbers in the range 0 to</p>
709
700
  <div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><p>If the values passed in are outside that range, they will be
710
701
  clamped.</p></li></ol></div>
711
702
  <div class="refsect3">
712
- <a name="id-1.3.4.7.7.6"></a><h4>Parameters</h4>
713
- <div class="informaltable"><table width="100%" border="0">
703
+ <a name="cairo-pattern-create-rgba.parameters"></a><h4>Parameters</h4>
704
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
714
705
  <colgroup>
715
706
  <col width="150px" class="parameters_name">
716
707
  <col class="parameters_description">
@@ -741,7 +732,7 @@ clamped.</p></li></ol></div>
741
732
  </table></div>
742
733
  </div>
743
734
  <div class="refsect3">
744
- <a name="id-1.3.4.7.7.7"></a><h4>Returns</h4>
735
+ <a name="cairo-pattern-create-rgba.returns"></a><h4>Returns</h4>
745
736
  <p> the newly created <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-t" title="cairo_pattern_t"><span class="type">cairo_pattern_t</span></a> if successful, or
746
737
  an error pattern in case of no memory. The caller owns the
747
738
  returned object and should call <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-destroy" title="cairo_pattern_destroy ()"><code class="function">cairo_pattern_destroy()</code></a> when
@@ -749,9 +740,8 @@ finished with it.</p>
749
740
  <p>This function will always return a valid pointer, but if an error
750
741
  occurred the pattern status will be set to an error. To inspect
751
742
  the status of a pattern use <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-status" title="cairo_pattern_status ()"><code class="function">cairo_pattern_status()</code></a>.</p>
752
- <p></p>
753
743
  </div>
754
- <p class="since">Since 1.0</p>
744
+ <p class="since">Since: 1.0</p>
755
745
  </div>
756
746
  <hr>
757
747
  <div class="refsect2">
@@ -764,8 +754,8 @@ cairo_pattern_get_rgba (<em class="parameter"><code><a class="link" href="cairo-
764
754
  <em class="parameter"><code><span class="type">double</span> *alpha</code></em>);</pre>
765
755
  <p>Gets the solid color for a solid color pattern.</p>
766
756
  <div class="refsect3">
767
- <a name="id-1.3.4.7.8.5"></a><h4>Parameters</h4>
768
- <div class="informaltable"><table width="100%" border="0">
757
+ <a name="cairo-pattern-get-rgba.parameters"></a><h4>Parameters</h4>
758
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
769
759
  <colgroup>
770
760
  <col width="150px" class="parameters_name">
771
761
  <col class="parameters_description">
@@ -801,13 +791,12 @@ cairo_pattern_get_rgba (<em class="parameter"><code><a class="link" href="cairo-
801
791
  </table></div>
802
792
  </div>
803
793
  <div class="refsect3">
804
- <a name="id-1.3.4.7.8.6"></a><h4>Returns</h4>
794
+ <a name="cairo-pattern-get-rgba.returns"></a><h4>Returns</h4>
805
795
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a>, or
806
796
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_PATTERN_TYPE_MISMATCH</code></a> if the pattern is not a solid
807
797
  color pattern.</p>
808
- <p></p>
809
798
  </div>
810
- <p class="since">Since 1.4</p>
799
+ <p class="since">Since: 1.4</p>
811
800
  </div>
812
801
  <hr>
813
802
  <div class="refsect2">
@@ -816,8 +805,8 @@ color pattern.</p>
816
805
  cairo_pattern_create_for_surface (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);</pre>
817
806
  <p>Create a new <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-t" title="cairo_pattern_t"><span class="type">cairo_pattern_t</span></a> for the given surface.</p>
818
807
  <div class="refsect3">
819
- <a name="id-1.3.4.7.9.5"></a><h4>Parameters</h4>
820
- <div class="informaltable"><table width="100%" border="0">
808
+ <a name="cairo-pattern-create-for-surface.parameters"></a><h4>Parameters</h4>
809
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
821
810
  <colgroup>
822
811
  <col width="150px" class="parameters_name">
823
812
  <col class="parameters_description">
@@ -831,7 +820,7 @@ cairo_pattern_create_for_surface (<em class="parameter"><code><a class="link" hr
831
820
  </table></div>
832
821
  </div>
833
822
  <div class="refsect3">
834
- <a name="id-1.3.4.7.9.6"></a><h4>Returns</h4>
823
+ <a name="cairo-pattern-create-for-surface.returns"></a><h4>Returns</h4>
835
824
  <p> the newly created <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-t" title="cairo_pattern_t"><span class="type">cairo_pattern_t</span></a> if successful, or
836
825
  an error pattern in case of no memory. The caller owns the
837
826
  returned object and should call <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-destroy" title="cairo_pattern_destroy ()"><code class="function">cairo_pattern_destroy()</code></a> when
@@ -839,9 +828,8 @@ finished with it.</p>
839
828
  <p>This function will always return a valid pointer, but if an error
840
829
  occurred the pattern status will be set to an error. To inspect
841
830
  the status of a pattern use <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-status" title="cairo_pattern_status ()"><code class="function">cairo_pattern_status()</code></a>.</p>
842
- <p></p>
843
831
  </div>
844
- <p class="since">Since 1.0</p>
832
+ <p class="since">Since: 1.0</p>
845
833
  </div>
846
834
  <hr>
847
835
  <div class="refsect2">
@@ -854,8 +842,8 @@ cairo_pattern_get_surface (<em class="parameter"><code><a class="link" href="cai
854
842
  is owned by the pattern; the caller should call
855
843
  <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-reference" title="cairo_surface_reference ()"><code class="function">cairo_surface_reference()</code></a> if the surface is to be retained.</p>
856
844
  <div class="refsect3">
857
- <a name="id-1.3.4.7.10.5"></a><h4>Parameters</h4>
858
- <div class="informaltable"><table width="100%" border="0">
845
+ <a name="cairo-pattern-get-surface.parameters"></a><h4>Parameters</h4>
846
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
859
847
  <colgroup>
860
848
  <col width="150px" class="parameters_name">
861
849
  <col class="parameters_description">
@@ -876,13 +864,12 @@ cairo_pattern_get_surface (<em class="parameter"><code><a class="link" href="cai
876
864
  </table></div>
877
865
  </div>
878
866
  <div class="refsect3">
879
- <a name="id-1.3.4.7.10.6"></a><h4>Returns</h4>
867
+ <a name="cairo-pattern-get-surface.returns"></a><h4>Returns</h4>
880
868
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a>, or
881
869
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_PATTERN_TYPE_MISMATCH</code></a> if the pattern is not a surface
882
870
  pattern.</p>
883
- <p></p>
884
871
  </div>
885
- <p class="since">Since 1.4</p>
872
+ <p class="since">Since: 1.4</p>
886
873
  </div>
887
874
  <hr>
888
875
  <div class="refsect2">
@@ -901,8 +888,8 @@ number of color stops should be defined using
901
888
  pattern space is identical to user space, but the relationship
902
889
  between the spaces can be changed with <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-set-matrix" title="cairo_pattern_set_matrix ()"><code class="function">cairo_pattern_set_matrix()</code></a>.</p>
903
890
  <div class="refsect3">
904
- <a name="id-1.3.4.7.11.6"></a><h4>Parameters</h4>
905
- <div class="informaltable"><table width="100%" border="0">
891
+ <a name="cairo-pattern-create-linear.parameters"></a><h4>Parameters</h4>
892
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
906
893
  <colgroup>
907
894
  <col width="150px" class="parameters_name">
908
895
  <col class="parameters_description">
@@ -933,7 +920,7 @@ between the spaces can be changed with <a class="link" href="cairo-cairo-pattern
933
920
  </table></div>
934
921
  </div>
935
922
  <div class="refsect3">
936
- <a name="id-1.3.4.7.11.7"></a><h4>Returns</h4>
923
+ <a name="cairo-pattern-create-linear.returns"></a><h4>Returns</h4>
937
924
  <p> the newly created <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-t" title="cairo_pattern_t"><span class="type">cairo_pattern_t</span></a> if successful, or
938
925
  an error pattern in case of no memory. The caller owns the
939
926
  returned object and should call <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-destroy" title="cairo_pattern_destroy ()"><code class="function">cairo_pattern_destroy()</code></a> when
@@ -941,9 +928,8 @@ finished with it.</p>
941
928
  <p>This function will always return a valid pointer, but if an error
942
929
  occurred the pattern status will be set to an error. To inspect
943
930
  the status of a pattern use <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-status" title="cairo_pattern_status ()"><code class="function">cairo_pattern_status()</code></a>.</p>
944
- <p></p>
945
931
  </div>
946
- <p class="since">Since 1.0</p>
932
+ <p class="since">Since: 1.0</p>
947
933
  </div>
948
934
  <hr>
949
935
  <div class="refsect2">
@@ -956,8 +942,8 @@ cairo_pattern_get_linear_points (<em class="parameter"><code><a class="link" hre
956
942
  <em class="parameter"><code><span class="type">double</span> *y1</code></em>);</pre>
957
943
  <p>Gets the gradient endpoints for a linear gradient.</p>
958
944
  <div class="refsect3">
959
- <a name="id-1.3.4.7.12.5"></a><h4>Parameters</h4>
960
- <div class="informaltable"><table width="100%" border="0">
945
+ <a name="cairo-pattern-get-linear-points.parameters"></a><h4>Parameters</h4>
946
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
961
947
  <colgroup>
962
948
  <col width="150px" class="parameters_name">
963
949
  <col class="parameters_description">
@@ -993,14 +979,13 @@ cairo_pattern_get_linear_points (<em class="parameter"><code><a class="link" hre
993
979
  </table></div>
994
980
  </div>
995
981
  <div class="refsect3">
996
- <a name="id-1.3.4.7.12.6"></a><h4>Returns</h4>
982
+ <a name="cairo-pattern-get-linear-points.returns"></a><h4>Returns</h4>
997
983
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a>, or
998
984
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_PATTERN_TYPE_MISMATCH</code></a> if <em class="parameter"><code>pattern</code></em>
999
985
  is not a linear
1000
986
  gradient pattern.</p>
1001
- <p></p>
1002
987
  </div>
1003
- <p class="since">Since 1.4</p>
988
+ <p class="since">Since: 1.4</p>
1004
989
  </div>
1005
990
  <hr>
1006
991
  <div class="refsect2">
@@ -1021,8 +1006,8 @@ gradient pattern, a number of color stops should be defined using
1021
1006
  pattern space is identical to user space, but the relationship
1022
1007
  between the spaces can be changed with <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-set-matrix" title="cairo_pattern_set_matrix ()"><code class="function">cairo_pattern_set_matrix()</code></a>.</p>
1023
1008
  <div class="refsect3">
1024
- <a name="id-1.3.4.7.13.6"></a><h4>Parameters</h4>
1025
- <div class="informaltable"><table width="100%" border="0">
1009
+ <a name="cairo-pattern-create-radial.parameters"></a><h4>Parameters</h4>
1010
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
1026
1011
  <colgroup>
1027
1012
  <col width="150px" class="parameters_name">
1028
1013
  <col class="parameters_description">
@@ -1063,7 +1048,7 @@ between the spaces can be changed with <a class="link" href="cairo-cairo-pattern
1063
1048
  </table></div>
1064
1049
  </div>
1065
1050
  <div class="refsect3">
1066
- <a name="id-1.3.4.7.13.7"></a><h4>Returns</h4>
1051
+ <a name="cairo-pattern-create-radial.returns"></a><h4>Returns</h4>
1067
1052
  <p> the newly created <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-t" title="cairo_pattern_t"><span class="type">cairo_pattern_t</span></a> if successful, or
1068
1053
  an error pattern in case of no memory. The caller owns the
1069
1054
  returned object and should call <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-destroy" title="cairo_pattern_destroy ()"><code class="function">cairo_pattern_destroy()</code></a> when
@@ -1071,9 +1056,8 @@ finished with it.</p>
1071
1056
  <p>This function will always return a valid pointer, but if an error
1072
1057
  occurred the pattern status will be set to an error. To inspect
1073
1058
  the status of a pattern use <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-status" title="cairo_pattern_status ()"><code class="function">cairo_pattern_status()</code></a>.</p>
1074
- <p></p>
1075
1059
  </div>
1076
- <p class="since">Since 1.0</p>
1060
+ <p class="since">Since: 1.0</p>
1077
1061
  </div>
1078
1062
  <hr>
1079
1063
  <div class="refsect2">
@@ -1089,8 +1073,8 @@ cairo_pattern_get_radial_circles (<em class="parameter"><code><a class="link" hr
1089
1073
  <p>Gets the gradient endpoint circles for a radial gradient, each
1090
1074
  specified as a center coordinate and a radius.</p>
1091
1075
  <div class="refsect3">
1092
- <a name="id-1.3.4.7.14.5"></a><h4>Parameters</h4>
1093
- <div class="informaltable"><table width="100%" border="0">
1076
+ <a name="cairo-pattern-get-radial-circles.parameters"></a><h4>Parameters</h4>
1077
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
1094
1078
  <colgroup>
1095
1079
  <col width="150px" class="parameters_name">
1096
1080
  <col class="parameters_description">
@@ -1136,14 +1120,13 @@ specified as a center coordinate and a radius.</p>
1136
1120
  </table></div>
1137
1121
  </div>
1138
1122
  <div class="refsect3">
1139
- <a name="id-1.3.4.7.14.6"></a><h4>Returns</h4>
1123
+ <a name="cairo-pattern-get-radial-circles.returns"></a><h4>Returns</h4>
1140
1124
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a>, or
1141
1125
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_PATTERN_TYPE_MISMATCH</code></a> if <em class="parameter"><code>pattern</code></em>
1142
1126
  is not a radial
1143
1127
  gradient pattern.</p>
1144
- <p></p>
1145
1128
  </div>
1146
- <p class="since">Since 1.4</p>
1129
+ <p class="since">Since: 1.4</p>
1147
1130
  </div>
1148
1131
  <hr>
1149
1132
  <div class="refsect2">
@@ -1266,7 +1249,7 @@ pattern, pattern space is identical to user space, but the
1266
1249
  relationship between the spaces can be changed with
1267
1250
  <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-set-matrix" title="cairo_pattern_set_matrix ()"><code class="function">cairo_pattern_set_matrix()</code></a>.</p>
1268
1251
  <div class="refsect3">
1269
- <a name="id-1.3.4.7.15.24"></a><h4>Returns</h4>
1252
+ <a name="cairo-pattern-create-mesh.returns"></a><h4>Returns</h4>
1270
1253
  <p> the newly created <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-t" title="cairo_pattern_t"><span class="type">cairo_pattern_t</span></a> if successful, or
1271
1254
  an error pattern in case of no memory. The caller owns the returned
1272
1255
  object and should call <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-destroy" title="cairo_pattern_destroy ()"><code class="function">cairo_pattern_destroy()</code></a> when finished with
@@ -1274,9 +1257,8 @@ it.</p>
1274
1257
  <p>This function will always return a valid pointer, but if an error
1275
1258
  occurred the pattern status will be set to an error. To inspect the
1276
1259
  status of a pattern use <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-status" title="cairo_pattern_status ()"><code class="function">cairo_pattern_status()</code></a>.</p>
1277
- <p></p>
1278
1260
  </div>
1279
- <p class="since">Since 1.12</p>
1261
+ <p class="since">Since: 1.12</p>
1280
1262
  </div>
1281
1263
  <hr>
1282
1264
  <div class="refsect2">
@@ -1299,8 +1281,8 @@ into an error status with a status of
1299
1281
  current patch, it will be put into an error status with a status of
1300
1282
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-MESH-CONSTRUCTION:CAPS"><code class="literal">CAIRO_STATUS_INVALID_MESH_CONSTRUCTION</code></a>.</p>
1301
1283
  <div class="refsect3">
1302
- <a name="id-1.3.4.7.16.8"></a><h4>Parameters</h4>
1303
- <div class="informaltable"><table width="100%" border="0">
1284
+ <a name="cairo-mesh-pattern-begin-patch.parameters"></a><h4>Parameters</h4>
1285
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
1304
1286
  <colgroup>
1305
1287
  <col width="150px" class="parameters_name">
1306
1288
  <col class="parameters_description">
@@ -1313,7 +1295,7 @@ current patch, it will be put into an error status with a status of
1313
1295
  </tr></tbody>
1314
1296
  </table></div>
1315
1297
  </div>
1316
- <p class="since">Since 1.12</p>
1298
+ <p class="since">Since: 1.12</p>
1317
1299
  </div>
1318
1300
  <hr>
1319
1301
  <div class="refsect2">
@@ -1335,8 +1317,8 @@ patch or the current patch has no current point, <em class="parameter"><code>pat
1335
1317
  put into an error status with a status of
1336
1318
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-MESH-CONSTRUCTION:CAPS"><code class="literal">CAIRO_STATUS_INVALID_MESH_CONSTRUCTION</code></a>.</p>
1337
1319
  <div class="refsect3">
1338
- <a name="id-1.3.4.7.17.7"></a><h4>Parameters</h4>
1339
- <div class="informaltable"><table width="100%" border="0">
1320
+ <a name="cairo-mesh-pattern-end-patch.parameters"></a><h4>Parameters</h4>
1321
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
1340
1322
  <colgroup>
1341
1323
  <col width="150px" class="parameters_name">
1342
1324
  <col class="parameters_description">
@@ -1349,7 +1331,7 @@ put into an error status with a status of
1349
1331
  </tr></tbody>
1350
1332
  </table></div>
1351
1333
  </div>
1352
- <p class="since">Since 1.12</p>
1334
+ <p class="since">Since: 1.12</p>
1353
1335
  </div>
1354
1336
  <hr>
1355
1337
  <div class="refsect2">
@@ -1373,8 +1355,8 @@ patch or the current patch already has at least one side, <em class="parameter">
1373
1355
  will be put into an error status with a status of
1374
1356
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-MESH-CONSTRUCTION:CAPS"><code class="literal">CAIRO_STATUS_INVALID_MESH_CONSTRUCTION</code></a>.</p>
1375
1357
  <div class="refsect3">
1376
- <a name="id-1.3.4.7.18.7"></a><h4>Parameters</h4>
1377
- <div class="informaltable"><table width="100%" border="0">
1358
+ <a name="cairo-mesh-pattern-move-to.parameters"></a><h4>Parameters</h4>
1359
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
1378
1360
  <colgroup>
1379
1361
  <col width="150px" class="parameters_name">
1380
1362
  <col class="parameters_description">
@@ -1399,7 +1381,7 @@ will be put into an error status with a status of
1399
1381
  </tbody>
1400
1382
  </table></div>
1401
1383
  </div>
1402
- <p class="since">Since 1.12</p>
1384
+ <p class="since">Since: 1.12</p>
1403
1385
  </div>
1404
1386
  <hr>
1405
1387
  <div class="refsect2">
@@ -1432,8 +1414,8 @@ patch or the current patch already has 4 sides, <em class="parameter"><code>patt
1432
1414
  put into an error status with a status of
1433
1415
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-MESH-CONSTRUCTION:CAPS"><code class="literal">CAIRO_STATUS_INVALID_MESH_CONSTRUCTION</code></a>.</p>
1434
1416
  <div class="refsect3">
1435
- <a name="id-1.3.4.7.19.8"></a><h4>Parameters</h4>
1436
- <div class="informaltable"><table width="100%" border="0">
1417
+ <a name="cairo-mesh-pattern-line-to.parameters"></a><h4>Parameters</h4>
1418
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
1437
1419
  <colgroup>
1438
1420
  <col width="150px" class="parameters_name">
1439
1421
  <col class="parameters_description">
@@ -1458,7 +1440,7 @@ put into an error status with a status of
1458
1440
  </tbody>
1459
1441
  </table></div>
1460
1442
  </div>
1461
- <p class="since">Since 1.12</p>
1443
+ <p class="since">Since: 1.12</p>
1462
1444
  </div>
1463
1445
  <hr>
1464
1446
  <div class="refsect2">
@@ -1501,8 +1483,8 @@ patch or the current patch already has 4 sides, <em class="parameter"><code>patt
1501
1483
  put into an error status with a status of
1502
1484
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-MESH-CONSTRUCTION:CAPS"><code class="literal">CAIRO_STATUS_INVALID_MESH_CONSTRUCTION</code></a>.</p>
1503
1485
  <div class="refsect3">
1504
- <a name="id-1.3.4.7.20.8"></a><h4>Parameters</h4>
1505
- <div class="informaltable"><table width="100%" border="0">
1486
+ <a name="cairo-mesh-pattern-curve-to.parameters"></a><h4>Parameters</h4>
1487
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
1506
1488
  <colgroup>
1507
1489
  <col width="150px" class="parameters_name">
1508
1490
  <col class="parameters_description">
@@ -1547,7 +1529,7 @@ put into an error status with a status of
1547
1529
  </tbody>
1548
1530
  </table></div>
1549
1531
  </div>
1550
- <p class="since">Since 1.12</p>
1532
+ <p class="since">Since: 1.12</p>
1551
1533
  </div>
1552
1534
  <hr>
1553
1535
  <div class="refsect2">
@@ -1575,8 +1557,8 @@ into an error status with a status of
1575
1557
  will be put into an error status with a status of
1576
1558
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-MESH-CONSTRUCTION:CAPS"><code class="literal">CAIRO_STATUS_INVALID_MESH_CONSTRUCTION</code></a>.</p>
1577
1559
  <div class="refsect3">
1578
- <a name="id-1.3.4.7.21.7"></a><h4>Parameters</h4>
1579
- <div class="informaltable"><table width="100%" border="0">
1560
+ <a name="cairo-mesh-pattern-set-control-point.parameters"></a><h4>Parameters</h4>
1561
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
1580
1562
  <colgroup>
1581
1563
  <col width="150px" class="parameters_name">
1582
1564
  <col class="parameters_description">
@@ -1606,7 +1588,7 @@ into an error status with a status of
1606
1588
  </tbody>
1607
1589
  </table></div>
1608
1590
  </div>
1609
- <p class="since">Since 1.12</p>
1591
+ <p class="since">Since: 1.12</p>
1610
1592
  </div>
1611
1593
  <hr>
1612
1594
  <div class="refsect2">
@@ -1637,8 +1619,8 @@ into an error status with a status of
1637
1619
  will be put into an error status with a status of
1638
1620
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-MESH-CONSTRUCTION:CAPS"><code class="literal">CAIRO_STATUS_INVALID_MESH_CONSTRUCTION</code></a>.</p>
1639
1621
  <div class="refsect3">
1640
- <a name="id-1.3.4.7.22.8"></a><h4>Parameters</h4>
1641
- <div class="informaltable"><table width="100%" border="0">
1622
+ <a name="cairo-mesh-pattern-set-corner-color-rgb.parameters"></a><h4>Parameters</h4>
1623
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
1642
1624
  <colgroup>
1643
1625
  <col width="150px" class="parameters_name">
1644
1626
  <col class="parameters_description">
@@ -1673,7 +1655,7 @@ into an error status with a status of
1673
1655
  </tbody>
1674
1656
  </table></div>
1675
1657
  </div>
1676
- <p class="since">Since 1.12</p>
1658
+ <p class="since">Since: 1.12</p>
1677
1659
  </div>
1678
1660
  <hr>
1679
1661
  <div class="refsect2">
@@ -1705,8 +1687,8 @@ into an error status with a status of
1705
1687
  will be put into an error status with a status of
1706
1688
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-MESH-CONSTRUCTION:CAPS"><code class="literal">CAIRO_STATUS_INVALID_MESH_CONSTRUCTION</code></a>.</p>
1707
1689
  <div class="refsect3">
1708
- <a name="id-1.3.4.7.23.8"></a><h4>Parameters</h4>
1709
- <div class="informaltable"><table width="100%" border="0">
1690
+ <a name="cairo-mesh-pattern-set-corner-color-rgba.parameters"></a><h4>Parameters</h4>
1691
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
1710
1692
  <colgroup>
1711
1693
  <col width="150px" class="parameters_name">
1712
1694
  <col class="parameters_description">
@@ -1746,7 +1728,7 @@ into an error status with a status of
1746
1728
  </tbody>
1747
1729
  </table></div>
1748
1730
  </div>
1749
- <p class="since">Since 1.12</p>
1731
+ <p class="since">Since: 1.12</p>
1750
1732
  </div>
1751
1733
  <hr>
1752
1734
  <div class="refsect2">
@@ -1759,8 +1741,8 @@ cairo_mesh_pattern_get_patch_count (<em class="parameter"><code><a class="link"
1759
1741
  calling <a class="link" href="cairo-cairo-pattern-t.html#cairo-mesh-pattern-end-patch" title="cairo_mesh_pattern_end_patch ()"><code class="function">cairo_mesh_pattern_end_patch()</code></a>. For example it will be 0
1760
1742
  during the definition of the first patch.</p>
1761
1743
  <div class="refsect3">
1762
- <a name="id-1.3.4.7.24.6"></a><h4>Parameters</h4>
1763
- <div class="informaltable"><table width="100%" border="0">
1744
+ <a name="cairo-mesh-pattern-get-patch-count.parameters"></a><h4>Parameters</h4>
1745
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
1764
1746
  <colgroup>
1765
1747
  <col width="150px" class="parameters_name">
1766
1748
  <col class="parameters_description">
@@ -1781,14 +1763,13 @@ during the definition of the first patch.</p>
1781
1763
  </table></div>
1782
1764
  </div>
1783
1765
  <div class="refsect3">
1784
- <a name="id-1.3.4.7.24.7"></a><h4>Returns</h4>
1766
+ <a name="cairo-mesh-pattern-get-patch-count.returns"></a><h4>Returns</h4>
1785
1767
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a>, or
1786
1768
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_PATTERN_TYPE_MISMATCH</code></a> if <em class="parameter"><code>pattern</code></em>
1787
1769
  is not a mesh
1788
1770
  pattern.</p>
1789
- <p></p>
1790
1771
  </div>
1791
- <p class="since">Since 1.12</p>
1772
+ <p class="since">Since: 1.12</p>
1792
1773
  </div>
1793
1774
  <hr>
1794
1775
  <div class="refsect2">
@@ -1803,8 +1784,8 @@ pattern.</p>
1803
1784
  can range from 0 to n-1 where n is the number returned by
1804
1785
  <a class="link" href="cairo-cairo-pattern-t.html#cairo-mesh-pattern-get-patch-count" title="cairo_mesh_pattern_get_patch_count ()"><code class="function">cairo_mesh_pattern_get_patch_count()</code></a>.</p>
1805
1786
  <div class="refsect3">
1806
- <a name="id-1.3.4.7.25.6"></a><h4>Parameters</h4>
1807
- <div class="informaltable"><table width="100%" border="0">
1787
+ <a name="cairo-mesh-pattern-get-path.parameters"></a><h4>Parameters</h4>
1788
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
1808
1789
  <colgroup>
1809
1790
  <col width="150px" class="parameters_name">
1810
1791
  <col class="parameters_description">
@@ -1825,7 +1806,7 @@ pattern.</p>
1825
1806
  </table></div>
1826
1807
  </div>
1827
1808
  <div class="refsect3">
1828
- <a name="id-1.3.4.7.25.7"></a><h4>Returns</h4>
1809
+ <a name="cairo-mesh-pattern-get-path.returns"></a><h4>Returns</h4>
1829
1810
  <p> the path defining the patch, or a path with status
1830
1811
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-INDEX:CAPS"><code class="literal">CAIRO_STATUS_INVALID_INDEX</code></a> if <em class="parameter"><code>patch_num</code></em>
1831
1812
  or <em class="parameter"><code>point_num</code></em>
@@ -1834,9 +1815,8 @@ valid for <em class="parameter"><code>pattern</code></em>
1834
1815
  . If <em class="parameter"><code>pattern</code></em>
1835
1816
  is not a mesh pattern, a path with
1836
1817
  status <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_PATTERN_TYPE_MISMATCH</code></a> is returned.</p>
1837
- <p></p>
1838
1818
  </div>
1839
- <p class="since">Since 1.12</p>
1819
+ <p class="since">Since: 1.12</p>
1840
1820
  </div>
1841
1821
  <hr>
1842
1822
  <div class="refsect2">
@@ -1858,8 +1838,8 @@ pattern.</p>
1858
1838
  are from 0 to 3 and identify the
1859
1839
  control points as explained in <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-create-mesh" title="cairo_pattern_create_mesh ()"><code class="function">cairo_pattern_create_mesh()</code></a>.</p>
1860
1840
  <div class="refsect3">
1861
- <a name="id-1.3.4.7.26.7"></a><h4>Parameters</h4>
1862
- <div class="informaltable"><table width="100%" border="0">
1841
+ <a name="cairo-mesh-pattern-get-control-point.parameters"></a><h4>Parameters</h4>
1842
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
1863
1843
  <colgroup>
1864
1844
  <col width="150px" class="parameters_name">
1865
1845
  <col class="parameters_description">
@@ -1895,7 +1875,7 @@ control points as explained in <a class="link" href="cairo-cairo-pattern-t.html#
1895
1875
  </table></div>
1896
1876
  </div>
1897
1877
  <div class="refsect3">
1898
- <a name="id-1.3.4.7.26.8"></a><h4>Returns</h4>
1878
+ <a name="cairo-mesh-pattern-get-control-point.returns"></a><h4>Returns</h4>
1899
1879
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a>, or <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-INDEX:CAPS"><code class="literal">CAIRO_STATUS_INVALID_INDEX</code></a>
1900
1880
  if <em class="parameter"><code>patch_num</code></em>
1901
1881
  or <em class="parameter"><code>point_num</code></em>
@@ -1903,9 +1883,8 @@ is not valid for <em class="parameter"><code>pattern</code></em>
1903
1883
  . If <em class="parameter"><code>pattern</code></em>
1904
1884
  is not a mesh pattern, <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_PATTERN_TYPE_MISMATCH</code></a> is
1905
1885
  returned.</p>
1906
- <p></p>
1907
1886
  </div>
1908
- <p class="since">Since 1.12</p>
1887
+ <p class="since">Since: 1.12</p>
1909
1888
  </div>
1910
1889
  <hr>
1911
1890
  <div class="refsect2">
@@ -1930,8 +1909,8 @@ cairo_mesh_pattern_get_corner_color_rgba
1930
1909
  are from 0 to 3 and identify the
1931
1910
  corners as explained in <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-create-mesh" title="cairo_pattern_create_mesh ()"><code class="function">cairo_pattern_create_mesh()</code></a>.</p>
1932
1911
  <div class="refsect3">
1933
- <a name="id-1.3.4.7.27.7"></a><h4>Parameters</h4>
1934
- <div class="informaltable"><table width="100%" border="0">
1912
+ <a name="cairo-mesh-pattern-get-corner-color-rgba.parameters"></a><h4>Parameters</h4>
1913
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
1935
1914
  <colgroup>
1936
1915
  <col width="150px" class="parameters_name">
1937
1916
  <col class="parameters_description">
@@ -1977,7 +1956,7 @@ corners as explained in <a class="link" href="cairo-cairo-pattern-t.html#cairo-p
1977
1956
  </table></div>
1978
1957
  </div>
1979
1958
  <div class="refsect3">
1980
- <a name="id-1.3.4.7.27.8"></a><h4>Returns</h4>
1959
+ <a name="cairo-mesh-pattern-get-corner-color-rgba.returns"></a><h4>Returns</h4>
1981
1960
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a>, or <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-INDEX:CAPS"><code class="literal">CAIRO_STATUS_INVALID_INDEX</code></a>
1982
1961
  if <em class="parameter"><code>patch_num</code></em>
1983
1962
  or <em class="parameter"><code>corner_num</code></em>
@@ -1986,9 +1965,8 @@ is not valid for <em class="parameter"><code>pattern</code></em>
1986
1965
  <em class="parameter"><code>pattern</code></em>
1987
1966
  is not a mesh pattern, <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_PATTERN_TYPE_MISMATCH</code></a>
1988
1967
  is returned.</p>
1989
- <p></p>
1990
1968
  </div>
1991
- <p class="since">Since 1.12</p>
1969
+ <p class="since">Since: 1.12</p>
1992
1970
  </div>
1993
1971
  <hr>
1994
1972
  <div class="refsect2">
@@ -2003,8 +1981,8 @@ cairo_pattern_reference (<em class="parameter"><code><a class="link" href="cairo
2003
1981
  <p>Use <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-get-reference-count" title="cairo_pattern_get_reference_count ()"><code class="function">cairo_pattern_get_reference_count()</code></a> to get the number of
2004
1982
  references to a <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-t" title="cairo_pattern_t"><span class="type">cairo_pattern_t</span></a>.</p>
2005
1983
  <div class="refsect3">
2006
- <a name="id-1.3.4.7.28.6"></a><h4>Parameters</h4>
2007
- <div class="informaltable"><table width="100%" border="0">
1984
+ <a name="cairo-pattern-reference.parameters"></a><h4>Parameters</h4>
1985
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2008
1986
  <colgroup>
2009
1987
  <col width="150px" class="parameters_name">
2010
1988
  <col class="parameters_description">
@@ -2018,11 +1996,10 @@ references to a <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-t
2018
1996
  </table></div>
2019
1997
  </div>
2020
1998
  <div class="refsect3">
2021
- <a name="id-1.3.4.7.28.7"></a><h4>Returns</h4>
1999
+ <a name="cairo-pattern-reference.returns"></a><h4>Returns</h4>
2022
2000
  <p> the referenced <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-t" title="cairo_pattern_t"><span class="type">cairo_pattern_t</span></a>.</p>
2023
- <p></p>
2024
2001
  </div>
2025
- <p class="since">Since 1.0</p>
2002
+ <p class="since">Since: 1.0</p>
2026
2003
  </div>
2027
2004
  <hr>
2028
2005
  <div class="refsect2">
@@ -2035,8 +2012,8 @@ zero, then <em class="parameter"><code>pattern</code></em>
2035
2012
  and all associated resources are freed. See
2036
2013
  <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-reference" title="cairo_pattern_reference ()"><code class="function">cairo_pattern_reference()</code></a>.</p>
2037
2014
  <div class="refsect3">
2038
- <a name="id-1.3.4.7.29.5"></a><h4>Parameters</h4>
2039
- <div class="informaltable"><table width="100%" border="0">
2015
+ <a name="cairo-pattern-destroy.parameters"></a><h4>Parameters</h4>
2016
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2040
2017
  <colgroup>
2041
2018
  <col width="150px" class="parameters_name">
2042
2019
  <col class="parameters_description">
@@ -2049,7 +2026,7 @@ zero, then <em class="parameter"><code>pattern</code></em>
2049
2026
  </tr></tbody>
2050
2027
  </table></div>
2051
2028
  </div>
2052
- <p class="since">Since 1.0</p>
2029
+ <p class="since">Since: 1.0</p>
2053
2030
  </div>
2054
2031
  <hr>
2055
2032
  <div class="refsect2">
@@ -2059,8 +2036,8 @@ cairo_pattern_status (<em class="parameter"><code><a class="link" href="cairo-ca
2059
2036
  <p>Checks whether an error has previously occurred for this
2060
2037
  pattern.</p>
2061
2038
  <div class="refsect3">
2062
- <a name="id-1.3.4.7.30.5"></a><h4>Parameters</h4>
2063
- <div class="informaltable"><table width="100%" border="0">
2039
+ <a name="cairo-pattern-status.parameters"></a><h4>Parameters</h4>
2040
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2064
2041
  <colgroup>
2065
2042
  <col width="150px" class="parameters_name">
2066
2043
  <col class="parameters_description">
@@ -2074,13 +2051,12 @@ pattern.</p>
2074
2051
  </table></div>
2075
2052
  </div>
2076
2053
  <div class="refsect3">
2077
- <a name="id-1.3.4.7.30.6"></a><h4>Returns</h4>
2054
+ <a name="cairo-pattern-status.returns"></a><h4>Returns</h4>
2078
2055
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a>, <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-NO-MEMORY:CAPS"><code class="literal">CAIRO_STATUS_NO_MEMORY</code></a>,
2079
2056
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-MATRIX:CAPS"><code class="literal">CAIRO_STATUS_INVALID_MATRIX</code></a>, <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_PATTERN_TYPE_MISMATCH</code></a>,
2080
2057
  or <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-INVALID-MESH-CONSTRUCTION:CAPS"><code class="literal">CAIRO_STATUS_INVALID_MESH_CONSTRUCTION</code></a>.</p>
2081
- <p></p>
2082
2058
  </div>
2083
- <p class="since">Since 1.0</p>
2059
+ <p class="since">Since: 1.0</p>
2084
2060
  </div>
2085
2061
  <hr>
2086
2062
  <div class="refsect2">
@@ -2094,8 +2070,8 @@ strategy.</p>
2094
2070
  <p>The default extend mode is <a class="link" href="cairo-cairo-pattern-t.html#CAIRO-EXTEND-NONE:CAPS"><code class="literal">CAIRO_EXTEND_NONE</code></a> for surface patterns
2095
2071
  and <a class="link" href="cairo-cairo-pattern-t.html#CAIRO-EXTEND-PAD:CAPS"><code class="literal">CAIRO_EXTEND_PAD</code></a> for gradient patterns.</p>
2096
2072
  <div class="refsect3">
2097
- <a name="id-1.3.4.7.31.6"></a><h4>Parameters</h4>
2098
- <div class="informaltable"><table width="100%" border="0">
2073
+ <a name="cairo-pattern-set-extend.parameters"></a><h4>Parameters</h4>
2074
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2099
2075
  <colgroup>
2100
2076
  <col width="150px" class="parameters_name">
2101
2077
  <col class="parameters_description">
@@ -2116,7 +2092,7 @@ pattern will be drawn</p></td>
2116
2092
  </tbody>
2117
2093
  </table></div>
2118
2094
  </div>
2119
- <p class="since">Since 1.0</p>
2095
+ <p class="since">Since: 1.0</p>
2120
2096
  </div>
2121
2097
  <hr>
2122
2098
  <div class="refsect2">
@@ -2126,8 +2102,8 @@ cairo_pattern_get_extend (<em class="parameter"><code><a class="link" href="cair
2126
2102
  <p>Gets the current extend mode for a pattern. See <a class="link" href="cairo-cairo-pattern-t.html#cairo-extend-t" title="enum cairo_extend_t"><span class="type">cairo_extend_t</span></a>
2127
2103
  for details on the semantics of each extend strategy.</p>
2128
2104
  <div class="refsect3">
2129
- <a name="id-1.3.4.7.32.5"></a><h4>Parameters</h4>
2130
- <div class="informaltable"><table width="100%" border="0">
2105
+ <a name="cairo-pattern-get-extend.parameters"></a><h4>Parameters</h4>
2106
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2131
2107
  <colgroup>
2132
2108
  <col width="150px" class="parameters_name">
2133
2109
  <col class="parameters_description">
@@ -2141,12 +2117,11 @@ for details on the semantics of each extend strategy.</p>
2141
2117
  </table></div>
2142
2118
  </div>
2143
2119
  <div class="refsect3">
2144
- <a name="id-1.3.4.7.32.6"></a><h4>Returns</h4>
2120
+ <a name="cairo-pattern-get-extend.returns"></a><h4>Returns</h4>
2145
2121
  <p> the current extend strategy used for drawing the
2146
2122
  pattern.</p>
2147
- <p></p>
2148
2123
  </div>
2149
- <p class="since">Since 1.0</p>
2124
+ <p class="since">Since: 1.0</p>
2150
2125
  </div>
2151
2126
  <hr>
2152
2127
  <div class="refsect2">
@@ -2166,8 +2141,8 @@ cairo_set_source_surface (cr, image, x, y);
2166
2141
  cairo_pattern_set_filter (cairo_get_source (cr), CAIRO_FILTER_NEAREST);
2167
2142
  </pre></div>
2168
2143
  <div class="refsect3">
2169
- <a name="id-1.3.4.7.33.7"></a><h4>Parameters</h4>
2170
- <div class="informaltable"><table width="100%" border="0">
2144
+ <a name="cairo-pattern-set-filter.parameters"></a><h4>Parameters</h4>
2145
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2171
2146
  <colgroup>
2172
2147
  <col width="150px" class="parameters_name">
2173
2148
  <col class="parameters_description">
@@ -2188,7 +2163,7 @@ the pattern</p></td>
2188
2163
  </tbody>
2189
2164
  </table></div>
2190
2165
  </div>
2191
- <p class="since">Since 1.0</p>
2166
+ <p class="since">Since: 1.0</p>
2192
2167
  </div>
2193
2168
  <hr>
2194
2169
  <div class="refsect2">
@@ -2198,8 +2173,8 @@ cairo_pattern_get_filter (<em class="parameter"><code><a class="link" href="cair
2198
2173
  <p>Gets the current filter for a pattern. See <a class="link" href="cairo-cairo-pattern-t.html#cairo-filter-t" title="enum cairo_filter_t"><span class="type">cairo_filter_t</span></a>
2199
2174
  for details on each filter.</p>
2200
2175
  <div class="refsect3">
2201
- <a name="id-1.3.4.7.34.5"></a><h4>Parameters</h4>
2202
- <div class="informaltable"><table width="100%" border="0">
2176
+ <a name="cairo-pattern-get-filter.parameters"></a><h4>Parameters</h4>
2177
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2203
2178
  <colgroup>
2204
2179
  <col width="150px" class="parameters_name">
2205
2180
  <col class="parameters_description">
@@ -2213,11 +2188,10 @@ for details on each filter.</p>
2213
2188
  </table></div>
2214
2189
  </div>
2215
2190
  <div class="refsect3">
2216
- <a name="id-1.3.4.7.34.6"></a><h4>Returns</h4>
2191
+ <a name="cairo-pattern-get-filter.returns"></a><h4>Returns</h4>
2217
2192
  <p> the current filter used for resizing the pattern.</p>
2218
- <p></p>
2219
2193
  </div>
2220
- <p class="since">Since 1.0</p>
2194
+ <p class="since">Since: 1.0</p>
2221
2195
  </div>
2222
2196
  <hr>
2223
2197
  <div class="refsect2">
@@ -2247,8 +2221,8 @@ would cause the pattern to appear at half of its default size.</p>
2247
2221
  <p>Also, please note the discussion of the user-space locking
2248
2222
  semantics of <a class="link" href="cairo-cairo-t.html#cairo-set-source" title="cairo_set_source ()"><code class="function">cairo_set_source()</code></a>.</p>
2249
2223
  <div class="refsect3">
2250
- <a name="id-1.3.4.7.35.11"></a><h4>Parameters</h4>
2251
- <div class="informaltable"><table width="100%" border="0">
2224
+ <a name="cairo-pattern-set-matrix.parameters"></a><h4>Parameters</h4>
2225
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2252
2226
  <colgroup>
2253
2227
  <col width="150px" class="parameters_name">
2254
2228
  <col class="parameters_description">
@@ -2268,7 +2242,7 @@ semantics of <a class="link" href="cairo-cairo-t.html#cairo-set-source" title="c
2268
2242
  </tbody>
2269
2243
  </table></div>
2270
2244
  </div>
2271
- <p class="since">Since 1.0</p>
2245
+ <p class="since">Since: 1.0</p>
2272
2246
  </div>
2273
2247
  <hr>
2274
2248
  <div class="refsect2">
@@ -2279,8 +2253,8 @@ cairo_pattern_get_matrix (<em class="parameter"><code><a class="link" href="cair
2279
2253
  <p>Stores the pattern's transformation matrix into <em class="parameter"><code>matrix</code></em>
2280
2254
  .</p>
2281
2255
  <div class="refsect3">
2282
- <a name="id-1.3.4.7.36.5"></a><h4>Parameters</h4>
2283
- <div class="informaltable"><table width="100%" border="0">
2256
+ <a name="cairo-pattern-get-matrix.parameters"></a><h4>Parameters</h4>
2257
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2284
2258
  <colgroup>
2285
2259
  <col width="150px" class="parameters_name">
2286
2260
  <col class="parameters_description">
@@ -2300,7 +2274,7 @@ cairo_pattern_get_matrix (<em class="parameter"><code><a class="link" href="cair
2300
2274
  </tbody>
2301
2275
  </table></div>
2302
2276
  </div>
2303
- <p class="since">Since 1.0</p>
2277
+ <p class="since">Since: 1.0</p>
2304
2278
  </div>
2305
2279
  <hr>
2306
2280
  <div class="refsect2">
@@ -2310,8 +2284,8 @@ cairo_pattern_get_type (<em class="parameter"><code><a class="link" href="cairo-
2310
2284
  <p>Get the pattern's type. See <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-type-t" title="enum cairo_pattern_type_t"><span class="type">cairo_pattern_type_t</span></a> for available
2311
2285
  types.</p>
2312
2286
  <div class="refsect3">
2313
- <a name="id-1.3.4.7.37.5"></a><h4>Parameters</h4>
2314
- <div class="informaltable"><table width="100%" border="0">
2287
+ <a name="cairo-pattern-get-type.parameters"></a><h4>Parameters</h4>
2288
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2315
2289
  <colgroup>
2316
2290
  <col width="150px" class="parameters_name">
2317
2291
  <col class="parameters_description">
@@ -2325,12 +2299,11 @@ types.</p>
2325
2299
  </table></div>
2326
2300
  </div>
2327
2301
  <div class="refsect3">
2328
- <a name="id-1.3.4.7.37.6"></a><h4>Returns</h4>
2302
+ <a name="cairo-pattern-get-type.returns"></a><h4>Returns</h4>
2329
2303
  <p> The type of <em class="parameter"><code>pattern</code></em>
2330
2304
  .</p>
2331
- <p></p>
2332
2305
  </div>
2333
- <p class="since">Since 1.2</p>
2306
+ <p class="since">Since: 1.2</p>
2334
2307
  </div>
2335
2308
  <hr>
2336
2309
  <div class="refsect2">
@@ -2340,8 +2313,8 @@ cairo_pattern_get_reference_count (<em class="parameter"><code><a class="link" h
2340
2313
  <p>Returns the current reference count of <em class="parameter"><code>pattern</code></em>
2341
2314
  .</p>
2342
2315
  <div class="refsect3">
2343
- <a name="id-1.3.4.7.38.5"></a><h4>Parameters</h4>
2344
- <div class="informaltable"><table width="100%" border="0">
2316
+ <a name="cairo-pattern-get-reference-count.parameters"></a><h4>Parameters</h4>
2317
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2345
2318
  <colgroup>
2346
2319
  <col width="150px" class="parameters_name">
2347
2320
  <col class="parameters_description">
@@ -2355,13 +2328,12 @@ cairo_pattern_get_reference_count (<em class="parameter"><code><a class="link" h
2355
2328
  </table></div>
2356
2329
  </div>
2357
2330
  <div class="refsect3">
2358
- <a name="id-1.3.4.7.38.6"></a><h4>Returns</h4>
2331
+ <a name="cairo-pattern-get-reference-count.returns"></a><h4>Returns</h4>
2359
2332
  <p> the current reference count of <em class="parameter"><code>pattern</code></em>
2360
2333
  . If the
2361
2334
  object is a nil object, 0 will be returned.</p>
2362
- <p></p>
2363
2335
  </div>
2364
- <p class="since">Since 1.4</p>
2336
+ <p class="since">Since: 1.4</p>
2365
2337
  </div>
2366
2338
  <hr>
2367
2339
  <div class="refsect2">
@@ -2377,8 +2349,8 @@ call this function with the key that was used to set it and <code class="literal
2377
2349
  for <em class="parameter"><code>data</code></em>
2378
2350
  .</p>
2379
2351
  <div class="refsect3">
2380
- <a name="id-1.3.4.7.39.5"></a><h4>Parameters</h4>
2381
- <div class="informaltable"><table width="100%" border="0">
2352
+ <a name="cairo-pattern-set-user-data.parameters"></a><h4>Parameters</h4>
2353
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2382
2354
  <colgroup>
2383
2355
  <col width="150px" class="parameters_name">
2384
2356
  <col class="parameters_description">
@@ -2411,12 +2383,11 @@ same key.</p></td>
2411
2383
  </table></div>
2412
2384
  </div>
2413
2385
  <div class="refsect3">
2414
- <a name="id-1.3.4.7.39.6"></a><h4>Returns</h4>
2386
+ <a name="cairo-pattern-set-user-data.returns"></a><h4>Returns</h4>
2415
2387
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> or <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-NO-MEMORY:CAPS"><code class="literal">CAIRO_STATUS_NO_MEMORY</code></a> if a
2416
2388
  slot could not be allocated for the user data.</p>
2417
- <p></p>
2418
2389
  </div>
2419
- <p class="since">Since 1.4</p>
2390
+ <p class="since">Since: 1.4</p>
2420
2391
  </div>
2421
2392
  <hr>
2422
2393
  <div class="refsect2">
@@ -2429,8 +2400,8 @@ cairo_pattern_get_user_data (<em class="parameter"><code><a class="link" href="c
2429
2400
  specified key. If no user data has been attached with the given
2430
2401
  key this function returns <code class="literal">NULL</code>.</p>
2431
2402
  <div class="refsect3">
2432
- <a name="id-1.3.4.7.40.5"></a><h4>Parameters</h4>
2433
- <div class="informaltable"><table width="100%" border="0">
2403
+ <a name="cairo-pattern-get-user-data.parameters"></a><h4>Parameters</h4>
2404
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2434
2405
  <colgroup>
2435
2406
  <col width="150px" class="parameters_name">
2436
2407
  <col class="parameters_description">
@@ -2452,11 +2423,10 @@ attached to</p></td>
2452
2423
  </table></div>
2453
2424
  </div>
2454
2425
  <div class="refsect3">
2455
- <a name="id-1.3.4.7.40.6"></a><h4>Returns</h4>
2426
+ <a name="cairo-pattern-get-user-data.returns"></a><h4>Returns</h4>
2456
2427
  <p> the user data previously attached or <code class="literal">NULL</code>.</p>
2457
- <p></p>
2458
2428
  </div>
2459
- <p class="since">Since 1.4</p>
2429
+ <p class="since">Since: 1.4</p>
2460
2430
  </div>
2461
2431
  </div>
2462
2432
  <div class="refsect1">
@@ -2478,7 +2448,7 @@ for example <a class="link" href="cairo-cairo-t.html#cairo-set-source-rgb" title
2478
2448
  <p>The type of a pattern can be queried with <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-get-type" title="cairo_pattern_get_type ()"><code class="function">cairo_pattern_get_type()</code></a>.</p>
2479
2449
  <p>Memory management of <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-t" title="cairo_pattern_t"><span class="type">cairo_pattern_t</span></a> is done with
2480
2450
  <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-reference" title="cairo_pattern_reference ()"><code class="function">cairo_pattern_reference()</code></a> and <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-destroy" title="cairo_pattern_destroy ()"><code class="function">cairo_pattern_destroy()</code></a>.</p>
2481
- <p class="since">Since 1.0</p>
2451
+ <p class="since">Since: 1.0</p>
2482
2452
  </div>
2483
2453
  <hr>
2484
2454
  <div class="refsect2">
@@ -2492,8 +2462,8 @@ geometry).</p>
2492
2462
  and <a class="link" href="cairo-cairo-pattern-t.html#CAIRO-EXTEND-PAD:CAPS"><code class="literal">CAIRO_EXTEND_PAD</code></a> for gradient patterns.</p>
2493
2463
  <p>New entries may be added in future versions.</p>
2494
2464
  <div class="refsect3">
2495
- <a name="id-1.3.4.8.3.7"></a><h4>Members</h4>
2496
- <div class="informaltable"><table width="100%" border="0">
2465
+ <a name="cairo-extend-t.members"></a><h4>Members</h4>
2466
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2497
2467
  <colgroup>
2498
2468
  <col width="300px" class="enum_members_name">
2499
2469
  <col class="enum_members_description">
@@ -2535,7 +2505,7 @@ and <a class="link" href="cairo-cairo-pattern-t.html#CAIRO-EXTEND-PAD:CAPS"><cod
2535
2505
  </tbody>
2536
2506
  </table></div>
2537
2507
  </div>
2538
- <p class="since">Since 1.0</p>
2508
+ <p class="since">Since: 1.0</p>
2539
2509
  </div>
2540
2510
  <hr>
2541
2511
  <div class="refsect2">
@@ -2545,8 +2515,8 @@ applied when reading pixel values from patterns. See
2545
2515
  <a class="link" href="cairo-cairo-pattern-t.html#cairo-pattern-set-filter" title="cairo_pattern_set_filter ()"><code class="function">cairo_pattern_set_filter()</code></a> for indicating the desired filter to be
2546
2516
  used with a particular pattern.</p>
2547
2517
  <div class="refsect3">
2548
- <a name="id-1.3.4.8.4.4"></a><h4>Members</h4>
2549
- <div class="informaltable"><table width="100%" border="0">
2518
+ <a name="cairo-filter-t.members"></a><h4>Members</h4>
2519
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2550
2520
  <colgroup>
2551
2521
  <col width="300px" class="enum_members_name">
2552
2522
  <col class="enum_members_description">
@@ -2602,7 +2572,7 @@ used with a particular pattern.</p>
2602
2572
  </tbody>
2603
2573
  </table></div>
2604
2574
  </div>
2605
- <p class="since">Since 1.0</p>
2575
+ <p class="since">Since: 1.0</p>
2606
2576
  </div>
2607
2577
  <hr>
2608
2578
  <div class="refsect2">
@@ -2623,8 +2593,8 @@ gradient patterns (either LINEAR or RADIAL). Otherwise the pattern
2623
2593
  will be shutdown and put into an error state.</p>
2624
2594
  <p>New entries may be added in future versions.</p>
2625
2595
  <div class="refsect3">
2626
- <a name="id-1.3.4.8.5.8"></a><h4>Members</h4>
2627
- <div class="informaltable"><table width="100%" border="0">
2596
+ <a name="cairo-pattern-type-t.members"></a><h4>Members</h4>
2597
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
2628
2598
  <colgroup>
2629
2599
  <col width="300px" class="enum_members_name">
2630
2600
  <col class="enum_members_description">
@@ -2677,7 +2647,7 @@ color. It may be opaque or translucent, since 1.2.</p>
2677
2647
  </tbody>
2678
2648
  </table></div>
2679
2649
  </div>
2680
- <p class="since">Since 1.2</p>
2650
+ <p class="since">Since: 1.2</p>
2681
2651
  </div>
2682
2652
  </div>
2683
2653
  <div class="refsect1">
@@ -2686,7 +2656,6 @@ color. It may be opaque or translucent, since 1.2.</p>
2686
2656
  </div>
2687
2657
  </div>
2688
2658
  <div class="footer">
2689
- <hr>
2690
- Generated by GTK-Doc V1.20</div>
2659
+ <hr>Generated by GTK-Doc V1.25</div>
2691
2660
  </body>
2692
2661
  </html>