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: XCB Surfaces</title>
6
- <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
5
+ <title>XCB Surfaces: 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-surfaces.html" title="Surfaces">
9
9
  <link rel="prev" href="cairo-Quartz-Surfaces.html" title="Quartz Surfaces">
10
10
  <link rel="next" href="cairo-XLib-Surfaces.html" title="XLib Surfaces">
11
- <meta name="generator" content="GTK-Doc V1.20 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.25 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
14
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
- <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
16
  <td width="100%" align="left" class="shortcuts">
17
- <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
18
- <a href="#cairo-XCB-Surfaces.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
19
- <a href="#cairo-XCB-Surfaces.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-XCB-Surfaces.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-surfaces.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-XCB-Surfaces.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">
@@ -125,7 +124,7 @@
125
124
  </div>
126
125
  <div class="refsect1">
127
126
  <a name="cairo-XCB-Surfaces.other"></a><h2>Types and Values</h2>
128
- <div class="informaltable"><table width="100%" border="0">
127
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
129
128
  <colgroup>
130
129
  <col width="150px" class="name">
131
130
  <col class="description">
@@ -143,11 +142,6 @@
143
142
  </table></div>
144
143
  </div>
145
144
  <div class="refsect1">
146
- <a name="cairo-XCB-Surfaces.object-hierarchy"></a><h2>Object Hierarchy</h2>
147
- <pre class="screen">
148
- </pre>
149
- </div>
150
- <div class="refsect1">
151
145
  <a name="cairo-XCB-Surfaces.description"></a><h2>Description</h2>
152
146
  <p>The XCB surface is used to render cairo graphics to X Window System
153
147
  windows and pixmaps using the XCB library.</p>
@@ -177,8 +171,8 @@ the created surface will be clipped by those child windows. When
177
171
  the created surface is used as a source, the contents of the
178
172
  children will be included.</p>
179
173
  <div class="refsect3">
180
- <a name="id-1.5.12.7.2.7"></a><h4>Parameters</h4>
181
- <div class="informaltable"><table width="100%" border="0">
174
+ <a name="cairo-xcb-surface-create.parameters"></a><h4>Parameters</h4>
175
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
182
176
  <colgroup>
183
177
  <col width="150px" class="parameters_name">
184
178
  <col class="parameters_description">
@@ -219,16 +213,15 @@ Currently, only TrueColor visuals are fully supported.</p></td>
219
213
  </table></div>
220
214
  </div>
221
215
  <div class="refsect3">
222
- <a name="id-1.5.12.7.2.8"></a><h4>Returns</h4>
216
+ <a name="cairo-xcb-surface-create.returns"></a><h4>Returns</h4>
223
217
  <p> a pointer to the newly created surface. The caller
224
218
  owns the surface and should call <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-destroy" title="cairo_surface_destroy ()"><code class="function">cairo_surface_destroy()</code></a> when done
225
219
  with it.</p>
226
220
  <p>This function always returns a valid pointer, but it will return a
227
221
  pointer to a "nil" surface if an error such as out of memory
228
222
  occurs. You can use <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-status" title="cairo_surface_status ()"><code class="function">cairo_surface_status()</code></a> to check for this.</p>
229
- <p></p>
230
223
  </div>
231
- <p class="since">Since 1.12</p>
224
+ <p class="since">Since: 1.12</p>
232
225
  </div>
233
226
  <hr>
234
227
  <div class="refsect2">
@@ -242,8 +235,8 @@ cairo_xcb_surface_create_for_bitmap (<em class="parameter"><code><span class="ty
242
235
  <p>Creates an XCB surface that draws to the given bitmap.
243
236
  This will be drawn to as a <a class="link" href="cairo-Image-Surfaces.html#CAIRO-FORMAT-A1:CAPS"><code class="literal">CAIRO_FORMAT_A1</code></a> object.</p>
244
237
  <div class="refsect3">
245
- <a name="id-1.5.12.7.3.5"></a><h4>Parameters</h4>
246
- <div class="informaltable"><table width="100%" border="0">
238
+ <a name="cairo-xcb-surface-create-for-bitmap.parameters"></a><h4>Parameters</h4>
239
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
247
240
  <colgroup>
248
241
  <col width="150px" class="parameters_name">
249
242
  <col class="parameters_description">
@@ -282,16 +275,15 @@ This will be drawn to as a <a class="link" href="cairo-Image-Surfaces.html#CAIRO
282
275
  </table></div>
283
276
  </div>
284
277
  <div class="refsect3">
285
- <a name="id-1.5.12.7.3.6"></a><h4>Returns</h4>
278
+ <a name="cairo-xcb-surface-create-for-bitmap.returns"></a><h4>Returns</h4>
286
279
  <p> a pointer to the newly created surface. The caller
287
280
  owns the surface and should call <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-destroy" title="cairo_surface_destroy ()"><code class="function">cairo_surface_destroy()</code></a> when done
288
281
  with it.</p>
289
282
  <p>This function always returns a valid pointer, but it will return a
290
283
  pointer to a "nil" surface if an error such as out of memory
291
284
  occurs. You can use <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-status" title="cairo_surface_status ()"><code class="function">cairo_surface_status()</code></a> to check for this.</p>
292
- <p></p>
293
285
  </div>
294
- <p class="since">Since 1.12</p>
286
+ <p class="since">Since: 1.12</p>
295
287
  </div>
296
288
  <hr>
297
289
  <div class="refsect2">
@@ -317,8 +309,8 @@ the created surface will be clipped by those child windows. When
317
309
  the created surface is used as a source, the contents of the
318
310
  children will be included.</p>
319
311
  <div class="refsect3">
320
- <a name="id-1.5.12.7.4.7"></a><h4>Parameters</h4>
321
- <div class="informaltable"><table width="100%" border="0">
312
+ <a name="cairo-xcb-surface-create-with-xrender-format.parameters"></a><h4>Parameters</h4>
313
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
322
314
  <colgroup>
323
315
  <col width="150px" class="parameters_name">
324
316
  <col class="parameters_description">
@@ -365,16 +357,15 @@ mush match the depth of the drawable.</p></td>
365
357
  </table></div>
366
358
  </div>
367
359
  <div class="refsect3">
368
- <a name="id-1.5.12.7.4.8"></a><h4>Returns</h4>
360
+ <a name="cairo-xcb-surface-create-with-xrender-format.returns"></a><h4>Returns</h4>
369
361
  <p> a pointer to the newly created surface. The caller
370
362
  owns the surface and should call <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-destroy" title="cairo_surface_destroy ()"><code class="function">cairo_surface_destroy()</code></a> when done
371
363
  with it.</p>
372
364
  <p>This function always returns a valid pointer, but it will return a
373
365
  pointer to a "nil" surface if an error such as out of memory
374
366
  occurs. You can use <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-status" title="cairo_surface_status ()"><code class="function">cairo_surface_status()</code></a> to check for this.</p>
375
- <p></p>
376
367
  </div>
377
- <p class="since">Since 1.12</p>
368
+ <p class="since">Since: 1.12</p>
378
369
  </div>
379
370
  <hr>
380
371
  <div class="refsect2">
@@ -394,8 +385,8 @@ this function on a surface created for a pixmap.</p>
394
385
  <p>If <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-flush" title="cairo_surface_flush ()"><code class="function">cairo_surface_flush()</code></a> wasn't called, some pending operations
395
386
  might be discarded.</p>
396
387
  <div class="refsect3">
397
- <a name="id-1.5.12.7.5.7"></a><h4>Parameters</h4>
398
- <div class="informaltable"><table width="100%" border="0">
388
+ <a name="cairo-xcb-surface-set-size.parameters"></a><h4>Parameters</h4>
389
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
399
390
  <colgroup>
400
391
  <col width="150px" class="parameters_name">
401
392
  <col class="parameters_description">
@@ -420,7 +411,7 @@ might be discarded.</p>
420
411
  </tbody>
421
412
  </table></div>
422
413
  </div>
423
- <p class="since">Since 1.12</p>
414
+ <p class="since">Since: 1.12</p>
424
415
  </div>
425
416
  <hr>
426
417
  <div class="refsect2">
@@ -435,8 +426,8 @@ surface.</p>
435
426
  <p>If <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-flush" title="cairo_surface_flush ()"><code class="function">cairo_surface_flush()</code></a> wasn't called, some pending operations
436
427
  might be discarded.</p>
437
428
  <div class="refsect3">
438
- <a name="id-1.5.12.7.6.6"></a><h4>Parameters</h4>
439
- <div class="informaltable"><table width="100%" border="0">
429
+ <a name="cairo-xcb-surface-set-drawable.parameters"></a><h4>Parameters</h4>
430
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
440
431
  <colgroup>
441
432
  <col width="150px" class="parameters_name">
442
433
  <col class="parameters_description">
@@ -466,7 +457,7 @@ might be discarded.</p>
466
457
  </tbody>
467
458
  </table></div>
468
459
  </div>
469
- <p class="since">Since 1.12</p>
460
+ <p class="since">Since: 1.12</p>
470
461
  </div>
471
462
  <hr>
472
463
  <div class="refsect2">
@@ -475,8 +466,8 @@ might be discarded.</p>
475
466
  cairo_xcb_device_get_connection (<em class="parameter"><code><a class="link" href="cairo-cairo-device-t.html#cairo-device-t" title="cairo_device_t"><span class="type">cairo_device_t</span></a> *device</code></em>);</pre>
476
467
  <p>Get the connection for the XCB device.</p>
477
468
  <div class="refsect3">
478
- <a name="id-1.5.12.7.7.5"></a><h4>Parameters</h4>
479
- <div class="informaltable"><table width="100%" border="0">
469
+ <a name="cairo-xcb-device-get-connection.parameters"></a><h4>Parameters</h4>
470
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
480
471
  <colgroup>
481
472
  <col width="150px" class="parameters_name">
482
473
  <col class="parameters_description">
@@ -490,11 +481,10 @@ cairo_xcb_device_get_connection (<em class="parameter"><code><a class="link" hre
490
481
  </table></div>
491
482
  </div>
492
483
  <div class="refsect3">
493
- <a name="id-1.5.12.7.7.6"></a><h4>Returns</h4>
484
+ <a name="cairo-xcb-device-get-connection.returns"></a><h4>Returns</h4>
494
485
  <p> the <span class="type">xcb_connection_t</span> for the connection</p>
495
- <p></p>
496
486
  </div>
497
- <p class="since">Since 1.12</p>
487
+ <p class="since">Since: 1.12</p>
498
488
  </div>
499
489
  <hr>
500
490
  <div class="refsect2">
@@ -510,8 +500,8 @@ It let's you find out how cairo would behave with an older version of
510
500
  the RENDER extension.</p>
511
501
  <p>Use the special values -1 and -1 for disabling the RENDER extension.</p>
512
502
  <div class="refsect3">
513
- <a name="id-1.5.12.7.8.6"></a><h4>Parameters</h4>
514
- <div class="informaltable"><table width="100%" border="0">
503
+ <a name="cairo-xcb-device-debug-cap-xrender-version.parameters"></a><h4>Parameters</h4>
504
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
515
505
  <colgroup>
516
506
  <col width="150px" class="parameters_name">
517
507
  <col class="parameters_description">
@@ -536,7 +526,7 @@ the RENDER extension.</p>
536
526
  </tbody>
537
527
  </table></div>
538
528
  </div>
539
- <p class="since">Since 1.12</p>
529
+ <p class="since">Since: 1.12</p>
540
530
  </div>
541
531
  <hr>
542
532
  <div class="refsect2">
@@ -552,8 +542,8 @@ It let's you find out how cairo would behave with an older version of
552
542
  the SHM extension.</p>
553
543
  <p>Use the special values -1 and -1 for disabling the SHM extension.</p>
554
544
  <div class="refsect3">
555
- <a name="id-1.5.12.7.9.6"></a><h4>Parameters</h4>
556
- <div class="informaltable"><table width="100%" border="0">
545
+ <a name="cairo-xcb-device-debug-cap-xshm-version.parameters"></a><h4>Parameters</h4>
546
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
557
547
  <colgroup>
558
548
  <col width="150px" class="parameters_name">
559
549
  <col class="parameters_description">
@@ -578,7 +568,7 @@ the SHM extension.</p>
578
568
  </tbody>
579
569
  </table></div>
580
570
  </div>
581
- <p class="since">Since 1.12</p>
571
+ <p class="since">Since: 1.12</p>
582
572
  </div>
583
573
  <hr>
584
574
  <div class="refsect2">
@@ -587,8 +577,8 @@ the SHM extension.</p>
587
577
  cairo_xcb_device_debug_get_precision (<em class="parameter"><code><a class="link" href="cairo-cairo-device-t.html#cairo-device-t" title="cairo_device_t"><span class="type">cairo_device_t</span></a> *device</code></em>);</pre>
588
578
  <p>Get the Xrender precision mode.</p>
589
579
  <div class="refsect3">
590
- <a name="id-1.5.12.7.10.5"></a><h4>Parameters</h4>
591
- <div class="informaltable"><table width="100%" border="0">
580
+ <a name="cairo-xcb-device-debug-get-precision.parameters"></a><h4>Parameters</h4>
581
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
592
582
  <colgroup>
593
583
  <col width="150px" class="parameters_name">
594
584
  <col class="parameters_description">
@@ -602,11 +592,10 @@ cairo_xcb_device_debug_get_precision (<em class="parameter"><code><a class="link
602
592
  </table></div>
603
593
  </div>
604
594
  <div class="refsect3">
605
- <a name="id-1.5.12.7.10.6"></a><h4>Returns</h4>
595
+ <a name="cairo-xcb-device-debug-get-precision.returns"></a><h4>Returns</h4>
606
596
  <p> the render precision mode</p>
607
- <p></p>
608
597
  </div>
609
- <p class="since">Since 1.12</p>
598
+ <p class="since">Since: 1.12</p>
610
599
  </div>
611
600
  <hr>
612
601
  <div class="refsect2">
@@ -617,8 +606,8 @@ cairo_xcb_device_debug_set_precision (<em class="parameter"><code><a class="link
617
606
  <p>Render supports two modes of precision when rendering trapezoids. Set
618
607
  the precision to the desired mode.</p>
619
608
  <div class="refsect3">
620
- <a name="id-1.5.12.7.11.5"></a><h4>Parameters</h4>
621
- <div class="informaltable"><table width="100%" border="0">
609
+ <a name="cairo-xcb-device-debug-set-precision.parameters"></a><h4>Parameters</h4>
610
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
622
611
  <colgroup>
623
612
  <col width="150px" class="parameters_name">
624
613
  <col class="parameters_description">
@@ -638,7 +627,7 @@ the precision to the desired mode.</p>
638
627
  </tbody>
639
628
  </table></div>
640
629
  </div>
641
- <p class="since">Since 1.12</p>
630
+ <p class="since">Since: 1.12</p>
642
631
  </div>
643
632
  </div>
644
633
  <div class="refsect1">
@@ -649,7 +638,7 @@ the precision to the desired mode.</p>
649
638
  </pre>
650
639
  <p>Defined if the xcb surface backend is available.
651
640
  This macro can be used to conditionally compile backend-specific code.</p>
652
- <p class="since">Since 1.12</p>
641
+ <p class="since">Since: 1.12</p>
653
642
  </div>
654
643
  <hr>
655
644
  <div class="refsect2">
@@ -666,7 +655,6 @@ This macro can be used to conditionally compile backend-specific code.</p>
666
655
  </div>
667
656
  </div>
668
657
  <div class="footer">
669
- <hr>
670
- Generated by GTK-Doc V1.20</div>
658
+ <hr>Generated by GTK-Doc V1.25</div>
671
659
  </body>
672
660
  </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: XLib Surfaces</title>
6
- <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
5
+ <title>XLib Surfaces: 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-surfaces.html" title="Surfaces">
9
9
  <link rel="prev" href="cairo-XCB-Surfaces.html" title="XCB Surfaces">
10
10
  <link rel="next" href="cairo-XLib-XRender-Backend.html" title="XLib-XRender Backend">
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-XLib-Surfaces.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
19
- <a href="#cairo-XLib-Surfaces.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-XLib-Surfaces.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-surfaces.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-XLib-Surfaces.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">
@@ -157,7 +156,7 @@
157
156
  </div>
158
157
  <div class="refsect1">
159
158
  <a name="cairo-XLib-Surfaces.other"></a><h2>Types and Values</h2>
160
- <div class="informaltable"><table width="100%" border="0">
159
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
161
160
  <colgroup>
162
161
  <col width="150px" class="name">
163
162
  <col class="description">
@@ -169,11 +168,6 @@
169
168
  </table></div>
170
169
  </div>
171
170
  <div class="refsect1">
172
- <a name="cairo-XLib-Surfaces.object-hierarchy"></a><h2>Object Hierarchy</h2>
173
- <pre class="screen">
174
- </pre>
175
- </div>
176
- <div class="refsect1">
177
171
  <a name="cairo-XLib-Surfaces.description"></a><h2>Description</h2>
178
172
  <p>The XLib surface is used to render cairo graphics to X Window System
179
173
  windows and pixmaps using the XLib library.</p>
@@ -203,8 +197,8 @@ the created surface will be clipped by those child windows. When
203
197
  the created surface is used as a source, the contents of the
204
198
  children will be included.</p>
205
199
  <div class="refsect3">
206
- <a name="id-1.5.13.7.2.7"></a><h4>Parameters</h4>
207
- <div class="informaltable"><table width="100%" border="0">
200
+ <a name="cairo-xlib-surface-create.parameters"></a><h4>Parameters</h4>
201
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
208
202
  <colgroup>
209
203
  <col width="150px" class="parameters_name">
210
204
  <col class="parameters_description">
@@ -245,11 +239,10 @@ Currently, only TrueColor visuals are fully supported.</p></td>
245
239
  </table></div>
246
240
  </div>
247
241
  <div class="refsect3">
248
- <a name="id-1.5.13.7.2.8"></a><h4>Returns</h4>
242
+ <a name="cairo-xlib-surface-create.returns"></a><h4>Returns</h4>
249
243
  <p> the newly created surface</p>
250
- <p></p>
251
244
  </div>
252
- <p class="since">Since 1.0</p>
245
+ <p class="since">Since: 1.0</p>
253
246
  </div>
254
247
  <hr>
255
248
  <div class="refsect2">
@@ -263,8 +256,8 @@ cairo_xlib_surface_create_for_bitmap (<em class="parameter"><code><span class="t
263
256
  <p>Creates an Xlib surface that draws to the given bitmap.
264
257
  This will be drawn to as a <a class="link" href="cairo-Image-Surfaces.html#CAIRO-FORMAT-A1:CAPS"><code class="literal">CAIRO_FORMAT_A1</code></a> object.</p>
265
258
  <div class="refsect3">
266
- <a name="id-1.5.13.7.3.5"></a><h4>Parameters</h4>
267
- <div class="informaltable"><table width="100%" border="0">
259
+ <a name="cairo-xlib-surface-create-for-bitmap.parameters"></a><h4>Parameters</h4>
260
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
268
261
  <colgroup>
269
262
  <col width="150px" class="parameters_name">
270
263
  <col class="parameters_description">
@@ -303,11 +296,10 @@ This will be drawn to as a <a class="link" href="cairo-Image-Surfaces.html#CAIRO
303
296
  </table></div>
304
297
  </div>
305
298
  <div class="refsect3">
306
- <a name="id-1.5.13.7.3.6"></a><h4>Returns</h4>
299
+ <a name="cairo-xlib-surface-create-for-bitmap.returns"></a><h4>Returns</h4>
307
300
  <p> the newly created surface</p>
308
- <p></p>
309
301
  </div>
310
- <p class="since">Since 1.0</p>
302
+ <p class="since">Since: 1.0</p>
311
303
  </div>
312
304
  <hr>
313
305
  <div class="refsect2">
@@ -325,8 +317,8 @@ ConfigureNotify events.)</p>
325
317
  <p>A Pixmap can never change size, so it is never necessary to call
326
318
  this function on a surface created for a Pixmap.</p>
327
319
  <div class="refsect3">
328
- <a name="id-1.5.13.7.4.6"></a><h4>Parameters</h4>
329
- <div class="informaltable"><table width="100%" border="0">
320
+ <a name="cairo-xlib-surface-set-size.parameters"></a><h4>Parameters</h4>
321
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
330
322
  <colgroup>
331
323
  <col width="150px" class="parameters_name">
332
324
  <col class="parameters_description">
@@ -351,7 +343,7 @@ this function on a surface created for a Pixmap.</p>
351
343
  </tbody>
352
344
  </table></div>
353
345
  </div>
354
- <p class="since">Since 1.0</p>
346
+ <p class="since">Since: 1.0</p>
355
347
  </div>
356
348
  <hr>
357
349
  <div class="refsect2">
@@ -360,8 +352,8 @@ this function on a surface created for a Pixmap.</p>
360
352
  cairo_xlib_surface_get_display (<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>
361
353
  <p>Get the X Display for the underlying X Drawable.</p>
362
354
  <div class="refsect3">
363
- <a name="id-1.5.13.7.5.5"></a><h4>Parameters</h4>
364
- <div class="informaltable"><table width="100%" border="0">
355
+ <a name="cairo-xlib-surface-get-display.parameters"></a><h4>Parameters</h4>
356
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
365
357
  <colgroup>
366
358
  <col width="150px" class="parameters_name">
367
359
  <col class="parameters_description">
@@ -375,11 +367,10 @@ cairo_xlib_surface_get_display (<em class="parameter"><code><a class="link" href
375
367
  </table></div>
376
368
  </div>
377
369
  <div class="refsect3">
378
- <a name="id-1.5.13.7.5.6"></a><h4>Returns</h4>
370
+ <a name="cairo-xlib-surface-get-display.returns"></a><h4>Returns</h4>
379
371
  <p> the display.</p>
380
- <p></p>
381
372
  </div>
382
- <p class="since">Since 1.2</p>
373
+ <p class="since">Since: 1.2</p>
383
374
  </div>
384
375
  <hr>
385
376
  <div class="refsect2">
@@ -388,8 +379,8 @@ cairo_xlib_surface_get_display (<em class="parameter"><code><a class="link" href
388
379
  cairo_xlib_surface_get_screen (<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>
389
380
  <p>Get the X Screen for the underlying X Drawable.</p>
390
381
  <div class="refsect3">
391
- <a name="id-1.5.13.7.6.5"></a><h4>Parameters</h4>
392
- <div class="informaltable"><table width="100%" border="0">
382
+ <a name="cairo-xlib-surface-get-screen.parameters"></a><h4>Parameters</h4>
383
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
393
384
  <colgroup>
394
385
  <col width="150px" class="parameters_name">
395
386
  <col class="parameters_description">
@@ -403,11 +394,10 @@ cairo_xlib_surface_get_screen (<em class="parameter"><code><a class="link" href=
403
394
  </table></div>
404
395
  </div>
405
396
  <div class="refsect3">
406
- <a name="id-1.5.13.7.6.6"></a><h4>Returns</h4>
397
+ <a name="cairo-xlib-surface-get-screen.returns"></a><h4>Returns</h4>
407
398
  <p> the screen.</p>
408
- <p></p>
409
399
  </div>
410
- <p class="since">Since 1.2</p>
400
+ <p class="since">Since: 1.2</p>
411
401
  </div>
412
402
  <hr>
413
403
  <div class="refsect2">
@@ -424,8 +414,8 @@ will get X protocol errors and will probably terminate.
424
414
  No checks are done by this function to ensure this
425
415
  compatibility.</p>
426
416
  <div class="refsect3">
427
- <a name="id-1.5.13.7.7.5"></a><h4>Parameters</h4>
428
- <div class="informaltable"><table width="100%" border="0">
417
+ <a name="cairo-xlib-surface-set-drawable.parameters"></a><h4>Parameters</h4>
418
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
429
419
  <colgroup>
430
420
  <col width="150px" class="parameters_name">
431
421
  <col class="parameters_description">
@@ -455,7 +445,7 @@ compatibility.</p>
455
445
  </tbody>
456
446
  </table></div>
457
447
  </div>
458
- <p class="since">Since 1.0</p>
448
+ <p class="since">Since: 1.0</p>
459
449
  </div>
460
450
  <hr>
461
451
  <div class="refsect2">
@@ -464,8 +454,8 @@ compatibility.</p>
464
454
  cairo_xlib_surface_get_drawable (<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>
465
455
  <p>Get the underlying X Drawable used for the surface.</p>
466
456
  <div class="refsect3">
467
- <a name="id-1.5.13.7.8.5"></a><h4>Parameters</h4>
468
- <div class="informaltable"><table width="100%" border="0">
457
+ <a name="cairo-xlib-surface-get-drawable.parameters"></a><h4>Parameters</h4>
458
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
469
459
  <colgroup>
470
460
  <col width="150px" class="parameters_name">
471
461
  <col class="parameters_description">
@@ -479,11 +469,10 @@ cairo_xlib_surface_get_drawable (<em class="parameter"><code><a class="link" hre
479
469
  </table></div>
480
470
  </div>
481
471
  <div class="refsect3">
482
- <a name="id-1.5.13.7.8.6"></a><h4>Returns</h4>
472
+ <a name="cairo-xlib-surface-get-drawable.returns"></a><h4>Returns</h4>
483
473
  <p> the drawable.</p>
484
- <p></p>
485
474
  </div>
486
- <p class="since">Since 1.2</p>
475
+ <p class="since">Since: 1.2</p>
487
476
  </div>
488
477
  <hr>
489
478
  <div class="refsect2">
@@ -497,8 +486,8 @@ underlying X Drawable. If <em class="parameter"><code>surface</code></em>
497
486
  <a class="link" href="cairo-XLib-Surfaces.html#cairo-xlib-surface-create" title="cairo_xlib_surface_create ()"><code class="function">cairo_xlib_surface_create()</code></a>, the return value is the Visual passed to that
498
487
  constructor.</p>
499
488
  <div class="refsect3">
500
- <a name="id-1.5.13.7.9.5"></a><h4>Parameters</h4>
501
- <div class="informaltable"><table width="100%" border="0">
489
+ <a name="cairo-xlib-surface-get-visual.parameters"></a><h4>Parameters</h4>
490
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
502
491
  <colgroup>
503
492
  <col width="150px" class="parameters_name">
504
493
  <col class="parameters_description">
@@ -512,13 +501,12 @@ constructor.</p>
512
501
  </table></div>
513
502
  </div>
514
503
  <div class="refsect3">
515
- <a name="id-1.5.13.7.9.6"></a><h4>Returns</h4>
504
+ <a name="cairo-xlib-surface-get-visual.returns"></a><h4>Returns</h4>
516
505
  <p> the Visual or <code class="literal">NULL</code> if there is no appropriate Visual for
517
506
  <em class="parameter"><code>surface</code></em>
518
507
  .</p>
519
- <p></p>
520
508
  </div>
521
- <p class="since">Since 1.2</p>
509
+ <p class="since">Since: 1.2</p>
522
510
  </div>
523
511
  <hr>
524
512
  <div class="refsect2">
@@ -527,8 +515,8 @@ constructor.</p>
527
515
  cairo_xlib_surface_get_width (<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>
528
516
  <p>Get the width of the X Drawable underlying the surface in pixels.</p>
529
517
  <div class="refsect3">
530
- <a name="id-1.5.13.7.10.5"></a><h4>Parameters</h4>
531
- <div class="informaltable"><table width="100%" border="0">
518
+ <a name="cairo-xlib-surface-get-width.parameters"></a><h4>Parameters</h4>
519
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
532
520
  <colgroup>
533
521
  <col width="150px" class="parameters_name">
534
522
  <col class="parameters_description">
@@ -542,11 +530,10 @@ cairo_xlib_surface_get_width (<em class="parameter"><code><a class="link" href="
542
530
  </table></div>
543
531
  </div>
544
532
  <div class="refsect3">
545
- <a name="id-1.5.13.7.10.6"></a><h4>Returns</h4>
533
+ <a name="cairo-xlib-surface-get-width.returns"></a><h4>Returns</h4>
546
534
  <p> the width of the surface in pixels.</p>
547
- <p></p>
548
535
  </div>
549
- <p class="since">Since 1.2</p>
536
+ <p class="since">Since: 1.2</p>
550
537
  </div>
551
538
  <hr>
552
539
  <div class="refsect2">
@@ -555,8 +542,8 @@ cairo_xlib_surface_get_width (<em class="parameter"><code><a class="link" href="
555
542
  cairo_xlib_surface_get_height (<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>
556
543
  <p>Get the height of the X Drawable underlying the surface in pixels.</p>
557
544
  <div class="refsect3">
558
- <a name="id-1.5.13.7.11.5"></a><h4>Parameters</h4>
559
- <div class="informaltable"><table width="100%" border="0">
545
+ <a name="cairo-xlib-surface-get-height.parameters"></a><h4>Parameters</h4>
546
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
560
547
  <colgroup>
561
548
  <col width="150px" class="parameters_name">
562
549
  <col class="parameters_description">
@@ -570,11 +557,10 @@ cairo_xlib_surface_get_height (<em class="parameter"><code><a class="link" href=
570
557
  </table></div>
571
558
  </div>
572
559
  <div class="refsect3">
573
- <a name="id-1.5.13.7.11.6"></a><h4>Returns</h4>
560
+ <a name="cairo-xlib-surface-get-height.returns"></a><h4>Returns</h4>
574
561
  <p> the height of the surface in pixels.</p>
575
- <p></p>
576
562
  </div>
577
- <p class="since">Since 1.2</p>
563
+ <p class="since">Since: 1.2</p>
578
564
  </div>
579
565
  <hr>
580
566
  <div class="refsect2">
@@ -583,8 +569,8 @@ cairo_xlib_surface_get_height (<em class="parameter"><code><a class="link" href=
583
569
  cairo_xlib_surface_get_depth (<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>
584
570
  <p>Get the number of bits used to represent each pixel value.</p>
585
571
  <div class="refsect3">
586
- <a name="id-1.5.13.7.12.5"></a><h4>Parameters</h4>
587
- <div class="informaltable"><table width="100%" border="0">
572
+ <a name="cairo-xlib-surface-get-depth.parameters"></a><h4>Parameters</h4>
573
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
588
574
  <colgroup>
589
575
  <col width="150px" class="parameters_name">
590
576
  <col class="parameters_description">
@@ -598,11 +584,10 @@ cairo_xlib_surface_get_depth (<em class="parameter"><code><a class="link" href="
598
584
  </table></div>
599
585
  </div>
600
586
  <div class="refsect3">
601
- <a name="id-1.5.13.7.12.6"></a><h4>Returns</h4>
587
+ <a name="cairo-xlib-surface-get-depth.returns"></a><h4>Returns</h4>
602
588
  <p> the depth of the surface in bits.</p>
603
- <p></p>
604
589
  </div>
605
- <p class="since">Since 1.2</p>
590
+ <p class="since">Since: 1.2</p>
606
591
  </div>
607
592
  <hr>
608
593
  <div class="refsect2">
@@ -618,8 +603,8 @@ It lets you find out how cairo would behave with an older version of
618
603
  the RENDER extension.</p>
619
604
  <p>Use the special values -1 and -1 for disabling the RENDER extension.</p>
620
605
  <div class="refsect3">
621
- <a name="id-1.5.13.7.13.6"></a><h4>Parameters</h4>
622
- <div class="informaltable"><table width="100%" border="0">
606
+ <a name="cairo-xlib-device-debug-cap-xrender-version.parameters"></a><h4>Parameters</h4>
607
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
623
608
  <colgroup>
624
609
  <col width="150px" class="parameters_name">
625
610
  <col class="parameters_description">
@@ -644,7 +629,7 @@ the RENDER extension.</p>
644
629
  </tbody>
645
630
  </table></div>
646
631
  </div>
647
- <p class="since">Since 1.12</p>
632
+ <p class="since">Since: 1.12</p>
648
633
  </div>
649
634
  <hr>
650
635
  <div class="refsect2">
@@ -653,8 +638,8 @@ the RENDER extension.</p>
653
638
  cairo_xlib_device_debug_get_precision (<em class="parameter"><code><a class="link" href="cairo-cairo-device-t.html#cairo-device-t" title="cairo_device_t"><span class="type">cairo_device_t</span></a> *device</code></em>);</pre>
654
639
  <p>Get the Xrender precision mode.</p>
655
640
  <div class="refsect3">
656
- <a name="id-1.5.13.7.14.5"></a><h4>Parameters</h4>
657
- <div class="informaltable"><table width="100%" border="0">
641
+ <a name="cairo-xlib-device-debug-get-precision.parameters"></a><h4>Parameters</h4>
642
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
658
643
  <colgroup>
659
644
  <col width="150px" class="parameters_name">
660
645
  <col class="parameters_description">
@@ -668,11 +653,10 @@ cairo_xlib_device_debug_get_precision (<em class="parameter"><code><a class="lin
668
653
  </table></div>
669
654
  </div>
670
655
  <div class="refsect3">
671
- <a name="id-1.5.13.7.14.6"></a><h4>Returns</h4>
656
+ <a name="cairo-xlib-device-debug-get-precision.returns"></a><h4>Returns</h4>
672
657
  <p> the render precision mode</p>
673
- <p></p>
674
658
  </div>
675
- <p class="since">Since 1.12</p>
659
+ <p class="since">Since: 1.12</p>
676
660
  </div>
677
661
  <hr>
678
662
  <div class="refsect2">
@@ -683,8 +667,8 @@ cairo_xlib_device_debug_set_precision (<em class="parameter"><code><a class="lin
683
667
  <p>Render supports two modes of precision when rendering trapezoids. Set
684
668
  the precision to the desired mode.</p>
685
669
  <div class="refsect3">
686
- <a name="id-1.5.13.7.15.5"></a><h4>Parameters</h4>
687
- <div class="informaltable"><table width="100%" border="0">
670
+ <a name="cairo-xlib-device-debug-set-precision.parameters"></a><h4>Parameters</h4>
671
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
688
672
  <colgroup>
689
673
  <col width="150px" class="parameters_name">
690
674
  <col class="parameters_description">
@@ -704,7 +688,7 @@ the precision to the desired mode.</p>
704
688
  </tbody>
705
689
  </table></div>
706
690
  </div>
707
- <p class="since">Since 1.12</p>
691
+ <p class="since">Since: 1.12</p>
708
692
  </div>
709
693
  </div>
710
694
  <div class="refsect1">
@@ -715,7 +699,7 @@ the precision to the desired mode.</p>
715
699
  </pre>
716
700
  <p>Defined if the Xlib surface backend is available.
717
701
  This macro can be used to conditionally compile backend-specific code.</p>
718
- <p class="since">Since 1.0</p>
702
+ <p class="since">Since: 1.0</p>
719
703
  </div>
720
704
  </div>
721
705
  <div class="refsect1">
@@ -724,7 +708,6 @@ This macro can be used to conditionally compile backend-specific code.</p>
724
708
  </div>
725
709
  </div>
726
710
  <div class="footer">
727
- <hr>
728
- Generated by GTK-Doc V1.20</div>
711
+ <hr>Generated by GTK-Doc V1.25</div>
729
712
  </body>
730
713
  </html>