cairo 1.8.5-x86-mingw32 → 1.10.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of cairo might be problematic. Click here for more details.

Files changed (450) hide show
  1. data/NEWS +2 -2
  2. data/Rakefile +44 -7
  3. data/ext/cairo/cairo.def +28 -1
  4. data/ext/cairo/extconf.rb +14 -16
  5. data/ext/cairo/rb_cairo.c +4 -1
  6. data/ext/cairo/rb_cairo.h +65 -1
  7. data/ext/cairo/rb_cairo_constants.c +150 -3
  8. data/ext/cairo/rb_cairo_context.c +17 -0
  9. data/ext/cairo/rb_cairo_device.c +406 -0
  10. data/ext/cairo/rb_cairo_exception.c +83 -32
  11. data/ext/cairo/rb_cairo_io.c +166 -0
  12. data/ext/cairo/rb_cairo_io.h +44 -0
  13. data/ext/cairo/rb_cairo_matrix.c +1 -1
  14. data/ext/cairo/rb_cairo_private.h +3 -0
  15. data/ext/cairo/rb_cairo_region.c +385 -0
  16. data/ext/cairo/rb_cairo_surface.c +674 -199
  17. data/lib/1.8/cairo.so +0 -0
  18. data/lib/1.9/cairo.so +0 -0
  19. data/samples/blur.rb +2 -3
  20. data/samples/{pac2.rb → pac-nomralize.rb} +5 -6
  21. data/samples/pac-tee.rb +170 -0
  22. data/samples/pac.rb +2 -3
  23. data/samples/png.rb +2 -3
  24. data/samples/scalable.rb +2 -3
  25. data/samples/text-on-path.rb +2 -3
  26. data/samples/text2.rb +2 -3
  27. data/test/cairo-test-utils.rb +15 -0
  28. data/test/run-test.rb +5 -4
  29. data/test/test_context.rb +4 -4
  30. data/test/test_font_face.rb +34 -21
  31. data/test/test_recording_surface.rb +18 -0
  32. data/test/test_region.rb +102 -0
  33. data/test/test_script_device.rb +46 -0
  34. data/test/test_script_surface.rb +13 -0
  35. data/test/test_surface.rb +14 -4
  36. data/test/test_tee_surface.rb +32 -0
  37. data/test/test_xml_device.rb +22 -0
  38. data/test/test_xml_surface.rb +32 -0
  39. data/tmp/i386-mingw32/cairo/1.9.2/rbconfig.rb +1 -1
  40. data/vendor/local/bin/libcairo-2.dll +0 -0
  41. data/vendor/local/include/cairo/cairo-deprecated.h +1 -16
  42. data/vendor/local/include/cairo/cairo-features.h +7 -0
  43. data/vendor/local/include/cairo/cairo-ft.h +16 -9
  44. data/vendor/local/include/cairo/cairo-gobject.h +186 -0
  45. data/vendor/local/include/cairo/cairo-pdf.h +27 -1
  46. data/vendor/local/include/cairo/cairo-ps.h +1 -1
  47. data/vendor/local/include/cairo/cairo-script-interpreter.h +117 -0
  48. data/vendor/local/include/cairo/cairo-svg.h +1 -1
  49. data/vendor/local/include/cairo/cairo-version.h +2 -2
  50. data/vendor/local/include/cairo/cairo-win32.h +1 -1
  51. data/vendor/local/include/cairo/cairo.h +382 -26
  52. data/vendor/local/lib/cairo.def +44 -0
  53. data/vendor/local/lib/cairo.lib +0 -0
  54. data/vendor/local/lib/libcairo.dll.a +0 -0
  55. data/vendor/local/lib/pkgconfig/cairo-fc.pc +12 -0
  56. data/vendor/local/lib/pkgconfig/cairo-ft.pc +4 -4
  57. data/vendor/local/lib/pkgconfig/cairo-gobject.pc +12 -0
  58. data/vendor/local/lib/pkgconfig/cairo-pdf.pc +3 -3
  59. data/vendor/local/lib/pkgconfig/cairo-png.pc +3 -3
  60. data/vendor/local/lib/pkgconfig/cairo-ps.pc +3 -3
  61. data/vendor/local/lib/pkgconfig/cairo-svg.pc +3 -3
  62. data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +3 -3
  63. data/vendor/local/lib/pkgconfig/cairo-win32.pc +3 -3
  64. data/vendor/local/lib/pkgconfig/cairo.pc +4 -4
  65. data/vendor/local/manifest/{cairo-dev_1.8.10-4_win32.mft → cairo-dev_1.10.0-1_win32.mft} +34 -27
  66. data/vendor/local/manifest/cairo_1.10.0-1_win32.mft +5 -0
  67. data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING +9 -8
  68. data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING-LGPL-2.1 +2 -2
  69. data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING-MPL-1.1 +0 -0
  70. data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +4 -14
  71. data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +5 -15
  72. data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +7 -17
  73. data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +6 -16
  74. data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +6 -16
  75. data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +23 -28
  76. data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +3 -13
  77. data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +3 -13
  78. data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +7 -17
  79. data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +373 -0
  80. data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +330 -0
  81. data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +478 -0
  82. data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +344 -0
  83. data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +320 -0
  84. data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1291 -0
  85. data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +622 -0
  86. data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +134 -0
  87. data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +210 -0
  88. data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +834 -0
  89. data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +318 -0
  90. data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +410 -0
  91. data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +169 -0
  92. data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +715 -0
  93. data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +410 -0
  94. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +335 -0
  95. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +291 -0
  96. data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +470 -0
  97. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +595 -0
  98. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +384 -0
  99. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +644 -0
  100. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +574 -0
  101. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +1457 -0
  102. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +1076 -0
  103. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1396 -0
  104. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2743 -0
  105. data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +13 -20
  106. data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +13 -23
  107. data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +11 -21
  108. data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +19 -26
  109. data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +279 -326
  110. data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp +411 -355
  111. data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +579 -480
  112. data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +147 -0
  113. data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +88 -65
  114. data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +72 -47
  115. data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +43 -32
  116. data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +42 -41
  117. data/vendor/local/share/gtk-doc/html/cairo/index-all.html +542 -345
  118. data/vendor/local/share/gtk-doc/html/cairo/index.html +36 -39
  119. data/vendor/local/share/gtk-doc/html/cairo/index.sgml +674 -444
  120. data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +6 -16
  121. data/vendor/local/share/gtk-doc/html/cairo/style.css +152 -54
  122. data/vendor/local/src/tml/packaging/cairo_1.10.0-1_win32.log +1262 -0
  123. data/vendor/local/src/tml/packaging/{cairo_1.8.10-4_win32.sh → cairo_1.10.0-1_win32.sh} +3 -3
  124. metadata +137 -389
  125. data/doc/doc.css +0 -91
  126. data/doc/en/cairo-antialias.html +0 -38
  127. data/doc/en/cairo-clip-not-representable-error.html +0 -47
  128. data/doc/en/cairo-color-base.html +0 -69
  129. data/doc/en/cairo-color-cmyk.html +0 -157
  130. data/doc/en/cairo-color-hsv.html +0 -137
  131. data/doc/en/cairo-color-rgb.html +0 -142
  132. data/doc/en/cairo-color-x11.html +0 -173
  133. data/doc/en/cairo-color.html +0 -238
  134. data/doc/en/cairo-content.html +0 -37
  135. data/doc/en/cairo-context-blur.html +0 -39
  136. data/doc/en/cairo-context-circle.html +0 -39
  137. data/doc/en/cairo-context-color.html +0 -39
  138. data/doc/en/cairo-context-path.html +0 -44
  139. data/doc/en/cairo-context-rectangle.html +0 -39
  140. data/doc/en/cairo-context-triangle.html +0 -39
  141. data/doc/en/cairo-context.html +0 -643
  142. data/doc/en/cairo-error.html +0 -44
  143. data/doc/en/cairo-extend.html +0 -38
  144. data/doc/en/cairo-file-not-found.html +0 -47
  145. data/doc/en/cairo-fill-rule.html +0 -36
  146. data/doc/en/cairo-filter.html +0 -40
  147. data/doc/en/cairo-font-extents.html +0 -129
  148. data/doc/en/cairo-font-face.html +0 -38
  149. data/doc/en/cairo-font-options.html +0 -139
  150. data/doc/en/cairo-font-slant.html +0 -37
  151. data/doc/en/cairo-font-type-mismatch.html +0 -47
  152. data/doc/en/cairo-font-weight.html +0 -36
  153. data/doc/en/cairo-format.html +0 -46
  154. data/doc/en/cairo-glyph.html +0 -99
  155. data/doc/en/cairo-gradient-pattern.html +0 -74
  156. data/doc/en/cairo-hint-metrics.html +0 -37
  157. data/doc/en/cairo-hint-style.html +0 -39
  158. data/doc/en/cairo-image-surface.html +0 -82
  159. data/doc/en/cairo-invalid-clusters.html +0 -47
  160. data/doc/en/cairo-invalid-content-error.html +0 -47
  161. data/doc/en/cairo-invalid-dash-error.html +0 -47
  162. data/doc/en/cairo-invalid-dsc-comment-error.html +0 -47
  163. data/doc/en/cairo-invalid-format-error.html +0 -47
  164. data/doc/en/cairo-invalid-index-error.html +0 -47
  165. data/doc/en/cairo-invalid-matrix-error.html +0 -47
  166. data/doc/en/cairo-invalid-path-data-error.html +0 -47
  167. data/doc/en/cairo-invalid-pop-group-error.html +0 -47
  168. data/doc/en/cairo-invalid-restore-error.html +0 -47
  169. data/doc/en/cairo-invalid-slant.html +0 -47
  170. data/doc/en/cairo-invalid-status-error.html +0 -47
  171. data/doc/en/cairo-invalid-stride-error.html +0 -47
  172. data/doc/en/cairo-invalid-string-error.html +0 -47
  173. data/doc/en/cairo-invalid-visual-error.html +0 -47
  174. data/doc/en/cairo-invalid-weight.html +0 -47
  175. data/doc/en/cairo-line-cap.html +0 -37
  176. data/doc/en/cairo-line-join.html +0 -37
  177. data/doc/en/cairo-linear-pattern.html +0 -60
  178. data/doc/en/cairo-matrix.html +0 -259
  179. data/doc/en/cairo-negative-count.html +0 -47
  180. data/doc/en/cairo-no-current-point-error.html +0 -47
  181. data/doc/en/cairo-null-pointer-error.html +0 -47
  182. data/doc/en/cairo-operator.html +0 -48
  183. data/doc/en/cairo-paper-parse-error.html +0 -47
  184. data/doc/en/cairo-paper-unknown-paper-name.html +0 -66
  185. data/doc/en/cairo-paper-unknown-unit.html +0 -66
  186. data/doc/en/cairo-paper-unrecognized-paper-description.html +0 -66
  187. data/doc/en/cairo-paper.html +0 -184
  188. data/doc/en/cairo-path-close-path.html +0 -49
  189. data/doc/en/cairo-path-curve-to.html +0 -49
  190. data/doc/en/cairo-path-data-type.html +0 -38
  191. data/doc/en/cairo-path-data.html +0 -98
  192. data/doc/en/cairo-path-line-to.html +0 -49
  193. data/doc/en/cairo-path-move-to.html +0 -49
  194. data/doc/en/cairo-path.html +0 -155
  195. data/doc/en/cairo-pattern-type-mismatch-error.html +0 -47
  196. data/doc/en/cairo-pattern.html +0 -99
  197. data/doc/en/cairo-pdf-surface.html +0 -57
  198. data/doc/en/cairo-point.html +0 -74
  199. data/doc/en/cairo-ps-level.html +0 -49
  200. data/doc/en/cairo-ps-surface.html +0 -92
  201. data/doc/en/cairo-quartz-image-surface.html +0 -57
  202. data/doc/en/cairo-quartz-surface.html +0 -57
  203. data/doc/en/cairo-radial-pattern.html +0 -60
  204. data/doc/en/cairo-read-error.html +0 -47
  205. data/doc/en/cairo-rectangle.html +0 -89
  206. data/doc/en/cairo-scaled-font.html +0 -94
  207. data/doc/en/cairo-solid-pattern.html +0 -62
  208. data/doc/en/cairo-subpixel-order.html +0 -39
  209. data/doc/en/cairo-surface-finished-error.html +0 -47
  210. data/doc/en/cairo-surface-pattern.html +0 -57
  211. data/doc/en/cairo-surface-type-mismatch-error.html +0 -47
  212. data/doc/en/cairo-surface.html +0 -121
  213. data/doc/en/cairo-svg-surface.html +0 -77
  214. data/doc/en/cairo-svg-version.html +0 -49
  215. data/doc/en/cairo-temp-file-error.html +0 -47
  216. data/doc/en/cairo-text-cluster-flag.html +0 -35
  217. data/doc/en/cairo-text-cluster.html +0 -84
  218. data/doc/en/cairo-text-extents.html +0 -144
  219. data/doc/en/cairo-toy-font-face.html +0 -67
  220. data/doc/en/cairo-user-font-error.html +0 -47
  221. data/doc/en/cairo-user-font-face-text-to-glyphs-data.html +0 -94
  222. data/doc/en/cairo-user-font-face.html +0 -72
  223. data/doc/en/cairo-user-font-immutable.html +0 -47
  224. data/doc/en/cairo-win32-printing-surface.html +0 -57
  225. data/doc/en/cairo-win32-surface.html +0 -62
  226. data/doc/en/cairo-write-error.html +0 -47
  227. data/doc/en/cairo.html +0 -131
  228. data/doc/en/index.html +0 -1154
  229. data/doc/index.html +0 -18
  230. data/doc/ja/cairo-antialias.html +0 -57
  231. data/doc/ja/cairo-clip-not-representable-error.html +0 -56
  232. data/doc/ja/cairo-color-base.html +0 -75
  233. data/doc/ja/cairo-color-cmyk.html +0 -152
  234. data/doc/ja/cairo-color-hsv.html +0 -135
  235. data/doc/ja/cairo-color-rgb.html +0 -145
  236. data/doc/ja/cairo-color-x11.html +0 -183
  237. data/doc/ja/cairo-color.html +0 -317
  238. data/doc/ja/cairo-content.html +0 -51
  239. data/doc/ja/cairo-context-blur.html +0 -53
  240. data/doc/ja/cairo-context-circle.html +0 -54
  241. data/doc/ja/cairo-context-color.html +0 -52
  242. data/doc/ja/cairo-context-path.html +0 -77
  243. data/doc/ja/cairo-context-rectangle.html +0 -60
  244. data/doc/ja/cairo-context-triangle.html +0 -47
  245. data/doc/ja/cairo-context.html +0 -1542
  246. data/doc/ja/cairo-error.html +0 -56
  247. data/doc/ja/cairo-extend.html +0 -56
  248. data/doc/ja/cairo-file-not-found.html +0 -51
  249. data/doc/ja/cairo-fill-rule.html +0 -58
  250. data/doc/ja/cairo-filter.html +0 -43
  251. data/doc/ja/cairo-font-extents.html +0 -164
  252. data/doc/ja/cairo-font-face.html +0 -55
  253. data/doc/ja/cairo-font-options.html +0 -189
  254. data/doc/ja/cairo-font-slant.html +0 -50
  255. data/doc/ja/cairo-font-type-mismatch.html +0 -52
  256. data/doc/ja/cairo-font-weight.html +0 -47
  257. data/doc/ja/cairo-format.html +0 -81
  258. data/doc/ja/cairo-glyph.html +0 -115
  259. data/doc/ja/cairo-gradient-pattern.html +0 -119
  260. data/doc/ja/cairo-hint-metrics.html +0 -57
  261. data/doc/ja/cairo-hint-style.html +0 -64
  262. data/doc/ja/cairo-image-surface.html +0 -131
  263. data/doc/ja/cairo-invalid-clusters.html +0 -55
  264. data/doc/ja/cairo-invalid-content-error.html +0 -54
  265. data/doc/ja/cairo-invalid-dash-error.html +0 -54
  266. data/doc/ja/cairo-invalid-dsc-comment-error.html +0 -54
  267. data/doc/ja/cairo-invalid-format-error.html +0 -54
  268. data/doc/ja/cairo-invalid-index-error.html +0 -54
  269. data/doc/ja/cairo-invalid-matrix-error.html +0 -54
  270. data/doc/ja/cairo-invalid-path-data-error.html +0 -54
  271. data/doc/ja/cairo-invalid-pop-group-error.html +0 -54
  272. data/doc/ja/cairo-invalid-restore-error.html +0 -55
  273. data/doc/ja/cairo-invalid-slant.html +0 -57
  274. data/doc/ja/cairo-invalid-status-error.html +0 -55
  275. data/doc/ja/cairo-invalid-stride-error.html +0 -55
  276. data/doc/ja/cairo-invalid-string-error.html +0 -54
  277. data/doc/ja/cairo-invalid-visual-error.html +0 -57
  278. data/doc/ja/cairo-invalid-weight.html +0 -57
  279. data/doc/ja/cairo-line-cap.html +0 -50
  280. data/doc/ja/cairo-line-join.html +0 -53
  281. data/doc/ja/cairo-linear-pattern.html +0 -87
  282. data/doc/ja/cairo-matrix.html +0 -354
  283. data/doc/ja/cairo-negative-count.html +0 -52
  284. data/doc/ja/cairo-no-current-point-error.html +0 -54
  285. data/doc/ja/cairo-null-pointer-error.html +0 -54
  286. data/doc/ja/cairo-operator.html +0 -51
  287. data/doc/ja/cairo-paper-parse-error.html +0 -55
  288. data/doc/ja/cairo-paper-unknown-paper-name.html +0 -76
  289. data/doc/ja/cairo-paper-unknown-unit.html +0 -75
  290. data/doc/ja/cairo-paper-unrecognized-paper-description.html +0 -76
  291. data/doc/ja/cairo-paper.html +0 -357
  292. data/doc/ja/cairo-path-close-path.html +0 -57
  293. data/doc/ja/cairo-path-curve-to.html +0 -70
  294. data/doc/ja/cairo-path-data-type.html +0 -53
  295. data/doc/ja/cairo-path-data.html +0 -127
  296. data/doc/ja/cairo-path-line-to.html +0 -62
  297. data/doc/ja/cairo-path-move-to.html +0 -62
  298. data/doc/ja/cairo-path.html +0 -144
  299. data/doc/ja/cairo-pattern-type-mismatch-error.html +0 -56
  300. data/doc/ja/cairo-pattern.html +0 -128
  301. data/doc/ja/cairo-pdf-surface.html +0 -86
  302. data/doc/ja/cairo-point.html +0 -90
  303. data/doc/ja/cairo-ps-level.html +0 -62
  304. data/doc/ja/cairo-ps-surface.html +0 -214
  305. data/doc/ja/cairo-quartz-image-surface.html +0 -75
  306. data/doc/ja/cairo-quartz-surface.html +0 -93
  307. data/doc/ja/cairo-radial-pattern.html +0 -93
  308. data/doc/ja/cairo-read-error.html +0 -55
  309. data/doc/ja/cairo-rectangle.html +0 -109
  310. data/doc/ja/cairo-scaled-font.html +0 -180
  311. data/doc/ja/cairo-solid-pattern.html +0 -87
  312. data/doc/ja/cairo-subpixel-order.html +0 -57
  313. data/doc/ja/cairo-surface-finished-error.html +0 -54
  314. data/doc/ja/cairo-surface-pattern.html +0 -68
  315. data/doc/ja/cairo-surface-type-mismatch-error.html +0 -56
  316. data/doc/ja/cairo-surface.html +0 -213
  317. data/doc/ja/cairo-svg-surface.html +0 -114
  318. data/doc/ja/cairo-svg-version.html +0 -66
  319. data/doc/ja/cairo-temp-file-error.html +0 -50
  320. data/doc/ja/cairo-text-cluster-flag.html +0 -46
  321. data/doc/ja/cairo-text-cluster.html +0 -102
  322. data/doc/ja/cairo-text-extents.html +0 -163
  323. data/doc/ja/cairo-toy-font-face.html +0 -107
  324. data/doc/ja/cairo-user-font-error.html +0 -55
  325. data/doc/ja/cairo-user-font-face-text-to-glyphs-data.html +0 -156
  326. data/doc/ja/cairo-user-font-face.html +0 -268
  327. data/doc/ja/cairo-user-font-immutable.html +0 -54
  328. data/doc/ja/cairo-win32-printing-surface.html +0 -80
  329. data/doc/ja/cairo-win32-surface.html +0 -100
  330. data/doc/ja/cairo-write-error.html +0 -55
  331. data/doc/ja/cairo.html +0 -177
  332. data/doc/ja/index.html +0 -1156
  333. data/pkg-config.rb +0 -313
  334. data/test-unit/Rakefile +0 -30
  335. data/test-unit/bin/testrb +0 -5
  336. data/test-unit/lib/test/unit.rb +0 -280
  337. data/test-unit/lib/test/unit/assertionfailederror.rb +0 -14
  338. data/test-unit/lib/test/unit/assertions.rb +0 -722
  339. data/test-unit/lib/test/unit/attribute.rb +0 -125
  340. data/test-unit/lib/test/unit/autorunner.rb +0 -254
  341. data/test-unit/lib/test/unit/collector.rb +0 -43
  342. data/test-unit/lib/test/unit/collector/descendant.rb +0 -23
  343. data/test-unit/lib/test/unit/collector/dir.rb +0 -108
  344. data/test-unit/lib/test/unit/collector/load.rb +0 -135
  345. data/test-unit/lib/test/unit/collector/objectspace.rb +0 -34
  346. data/test-unit/lib/test/unit/color.rb +0 -61
  347. data/test-unit/lib/test/unit/diff.rb +0 -524
  348. data/test-unit/lib/test/unit/error.rb +0 -124
  349. data/test-unit/lib/test/unit/exceptionhandler.rb +0 -39
  350. data/test-unit/lib/test/unit/failure.rb +0 -110
  351. data/test-unit/lib/test/unit/fixture.rb +0 -185
  352. data/test-unit/lib/test/unit/notification.rb +0 -125
  353. data/test-unit/lib/test/unit/omission.rb +0 -143
  354. data/test-unit/lib/test/unit/pending.rb +0 -146
  355. data/test-unit/lib/test/unit/priority.rb +0 -146
  356. data/test-unit/lib/test/unit/runner/console.rb +0 -46
  357. data/test-unit/lib/test/unit/runner/emacs.rb +0 -8
  358. data/test-unit/lib/test/unit/testcase.rb +0 -281
  359. data/test-unit/lib/test/unit/testresult.rb +0 -89
  360. data/test-unit/lib/test/unit/testsuite.rb +0 -110
  361. data/test-unit/lib/test/unit/ui/console/outputlevel.rb +0 -14
  362. data/test-unit/lib/test/unit/ui/console/testrunner.rb +0 -195
  363. data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +0 -49
  364. data/test-unit/lib/test/unit/ui/testrunner.rb +0 -20
  365. data/test-unit/lib/test/unit/ui/testrunnermediator.rb +0 -77
  366. data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +0 -41
  367. data/test-unit/lib/test/unit/util/backtracefilter.rb +0 -41
  368. data/test-unit/lib/test/unit/util/observable.rb +0 -90
  369. data/test-unit/lib/test/unit/util/procwrapper.rb +0 -48
  370. data/test-unit/lib/test/unit/version.rb +0 -7
  371. data/test-unit/sample/adder.rb +0 -13
  372. data/test-unit/sample/subtracter.rb +0 -12
  373. data/test-unit/sample/tc_adder.rb +0 -18
  374. data/test-unit/sample/tc_subtracter.rb +0 -18
  375. data/test-unit/sample/ts_examples.rb +0 -7
  376. data/test-unit/test/collector/test_descendant.rb +0 -135
  377. data/test-unit/test/collector/test_dir.rb +0 -406
  378. data/test-unit/test/collector/test_load.rb +0 -333
  379. data/test-unit/test/collector/test_objectspace.rb +0 -98
  380. data/test-unit/test/run-test.rb +0 -13
  381. data/test-unit/test/test_assertions.rb +0 -693
  382. data/test-unit/test/test_attribute.rb +0 -86
  383. data/test-unit/test/test_color.rb +0 -37
  384. data/test-unit/test/test_diff.rb +0 -477
  385. data/test-unit/test/test_emacs_runner.rb +0 -60
  386. data/test-unit/test/test_error.rb +0 -26
  387. data/test-unit/test/test_failure.rb +0 -33
  388. data/test-unit/test/test_fixture.rb +0 -252
  389. data/test-unit/test/test_notification.rb +0 -33
  390. data/test-unit/test/test_omission.rb +0 -81
  391. data/test-unit/test/test_pending.rb +0 -70
  392. data/test-unit/test/test_priority.rb +0 -89
  393. data/test-unit/test/test_testcase.rb +0 -430
  394. data/test-unit/test/test_testresult.rb +0 -113
  395. data/test-unit/test/test_testsuite.rb +0 -129
  396. data/test-unit/test/testunit_test_util.rb +0 -14
  397. data/test-unit/test/ui/test_testrunmediator.rb +0 -20
  398. data/test-unit/test/util/test_backtracefilter.rb +0 -41
  399. data/test-unit/test/util/test_observable.rb +0 -102
  400. data/test-unit/test/util/test_procwrapper.rb +0 -36
  401. data/test/test_pkg_config.rb +0 -123
  402. data/vendor/local/include/libpng14/png.h +0 -2701
  403. data/vendor/local/include/libpng14/pngconf.h +0 -1525
  404. data/vendor/local/include/png.h +0 -2701
  405. data/vendor/local/include/pngconf.h +0 -1525
  406. data/vendor/local/include/zconf.h +0 -461
  407. data/vendor/local/include/zlib.h +0 -1589
  408. data/vendor/local/lib/libpng.def +0 -192
  409. data/vendor/local/lib/libpng.lib +0 -0
  410. data/vendor/local/lib/libpng14.dll.a +0 -0
  411. data/vendor/local/lib/libz.dll.a +0 -0
  412. data/vendor/local/lib/pkgconfig/libpng.pc +0 -11
  413. data/vendor/local/lib/pkgconfig/libpng14.pc +0 -11
  414. data/vendor/local/lib/zdll.lib +0 -0
  415. data/vendor/local/lib/zlib.def +0 -67
  416. data/vendor/local/manifest/cairo_1.8.10-4_win32.mft +0 -5
  417. data/vendor/local/manifest/libpng-dev_1.4.3-1_win32.mft +0 -15
  418. data/vendor/local/manifest/zlib-dev_1.2.5-2_win32.mft +0 -8
  419. data/vendor/local/share/gtk-doc/html/cairo/cairo-context.html +0 -2643
  420. data/vendor/local/share/gtk-doc/html/cairo/cairo-error-status.html +0 -360
  421. data/vendor/local/share/gtk-doc/html/cairo/cairo-font-face.html +0 -408
  422. data/vendor/local/share/gtk-doc/html/cairo/cairo-font-options.html +0 -678
  423. data/vendor/local/share/gtk-doc/html/cairo/cairo-ft-font.html +0 -319
  424. data/vendor/local/share/gtk-doc/html/cairo/cairo-image-surface.html +0 -473
  425. data/vendor/local/share/gtk-doc/html/cairo/cairo-matrix.html +0 -596
  426. data/vendor/local/share/gtk-doc/html/cairo/cairo-paths.html +0 -1274
  427. data/vendor/local/share/gtk-doc/html/cairo/cairo-pattern.html +0 -1485
  428. data/vendor/local/share/gtk-doc/html/cairo/cairo-pdf-surface.html +0 -238
  429. data/vendor/local/share/gtk-doc/html/cairo/cairo-png-functions.html +0 -341
  430. data/vendor/local/share/gtk-doc/html/cairo/cairo-ps-surface.html +0 -622
  431. data/vendor/local/share/gtk-doc/html/cairo/cairo-quartz-font.html +0 -151
  432. data/vendor/local/share/gtk-doc/html/cairo/cairo-quartz-surface.html +0 -219
  433. data/vendor/local/share/gtk-doc/html/cairo/cairo-scaled-font.html +0 -1023
  434. data/vendor/local/share/gtk-doc/html/cairo/cairo-surface.html +0 -1026
  435. data/vendor/local/share/gtk-doc/html/cairo/cairo-svg-surface.html +0 -321
  436. data/vendor/local/share/gtk-doc/html/cairo/cairo-transformations.html +0 -436
  437. data/vendor/local/share/gtk-doc/html/cairo/cairo-types.html +0 -133
  438. data/vendor/local/share/gtk-doc/html/cairo/cairo-user-font.html +0 -735
  439. data/vendor/local/share/gtk-doc/html/cairo/cairo-version-info.html +0 -345
  440. data/vendor/local/share/gtk-doc/html/cairo/cairo-win32-font.html +0 -358
  441. data/vendor/local/share/gtk-doc/html/cairo/cairo-win32-surface.html +0 -312
  442. data/vendor/local/share/gtk-doc/html/cairo/cairo-xlib-surface.html +0 -492
  443. data/vendor/local/share/man/man3/libpng.3 +0 -4455
  444. data/vendor/local/share/man/man3/libpngpf.3 +0 -808
  445. data/vendor/local/share/man/man5/png.5 +0 -74
  446. data/vendor/local/src/tml/packaging/cairo_1.8.10-4_win32.log +0 -920
  447. data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.log +0 -272
  448. data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.sh +0 -71
  449. data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.log +0 -42
  450. data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.sh +0 -189
@@ -6,25 +6,15 @@
6
6
  <meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
7
7
  <link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
8
8
  <link rel="next" href="cairo-drawing.html" title="Drawing">
9
- <meta name="generator" content="GTK-Doc V1.11 (XML mode)">
9
+ <meta name="generator" content="GTK-Doc V1.15 (XML mode)">
10
10
  <link rel="stylesheet" href="style.css" type="text/css">
11
- <link rel="chapter" href="cairo-drawing.html" title="Drawing">
12
- <link rel="chapter" href="cairo-fonts.html" title="Fonts">
13
- <link rel="chapter" href="cairo-surfaces.html" title="Surfaces">
14
- <link rel="chapter" href="cairo-support.html" title="Utilities">
15
- <link rel="index" href="index-all.html" title="Index">
16
- <link rel="index" href="index-1.2.html" title="Index of new symbols in 1.2">
17
- <link rel="index" href="index-1.4.html" title="Index of new symbols in 1.4">
18
- <link rel="index" href="index-1.6.html" title="Index of new symbols in 1.6">
19
- <link rel="index" href="index-1.8.html" title="Index of new symbols in 1.8">
20
- <link rel="appendix" href="language-bindings.html" title="Appendix A. Creating a language binding for cairo">
21
11
  </head>
22
12
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
23
13
  <div lang="en" class="book" title="Cairo: A Vector Graphics Library">
24
14
  <div class="titlepage">
25
15
  <div>
26
16
  <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Cairo: A Vector Graphics Library</p></th></tr></table></div>
27
- <div><p class="releaseinfo">for Cairo 1.8.10
17
+ <div><p class="releaseinfo">for Cairo 1.10.0
28
18
  </p></div>
29
19
  </div>
30
20
  <hr>
@@ -33,88 +23,94 @@
33
23
  <dt><span class="chapter"><a href="cairo-drawing.html">Drawing</a></span></dt>
34
24
  <dd><dl>
35
25
  <dt>
36
- <span class="refentrytitle"><a href="cairo-context.html">cairo_t</a></span><span class="refpurpose"> — The cairo drawing context</span>
26
+ <span class="refentrytitle"><a href="cairo-cairo-t.html">cairo_t</a></span><span class="refpurpose"> — The cairo drawing context</span>
37
27
  </dt>
38
28
  <dt>
39
- <span class="refentrytitle"><a href="cairo-paths.html">Paths</a></span><span class="refpurpose"> — Creating paths and manipulating path data</span>
29
+ <span class="refentrytitle"><a href="cairo-Paths.html">Paths</a></span><span class="refpurpose"> — Creating paths and manipulating path data</span>
40
30
  </dt>
41
31
  <dt>
42
- <span class="refentrytitle"><a href="cairo-pattern.html">cairo_pattern_t</a></span><span class="refpurpose"> — Sources for drawing</span>
32
+ <span class="refentrytitle"><a href="cairo-cairo-pattern-t.html">cairo_pattern_t</a></span><span class="refpurpose"> — Sources for drawing</span>
43
33
  </dt>
44
34
  <dt>
45
- <span class="refentrytitle"><a href="cairo-transformations.html">Transformations</a></span><span class="refpurpose"> — Manipulating the current transformation matrix</span>
35
+ <span class="refentrytitle"><a href="cairo-Regions.html">Regions</a></span><span class="refpurpose"> — Representing a pixel-aligned area</span>
46
36
  </dt>
47
37
  <dt>
48
- <span class="refentrytitle"><a href="cairo-text.html">Text</a></span><span class="refpurpose"> — Rendering text and glyphs</span>
38
+ <span class="refentrytitle"><a href="cairo-Transformations.html">Transformations</a></span><span class="refpurpose"> — Manipulating the current transformation matrix</span>
39
+ </dt>
40
+ <dt>
41
+ <span class="refentrytitle"><a href="cairo-text.html">text</a></span><span class="refpurpose"> — Rendering text and glyphs</span>
49
42
  </dt>
50
43
  </dl></dd>
51
44
  <dt><span class="chapter"><a href="cairo-fonts.html">Fonts</a></span></dt>
52
45
  <dd><dl>
53
46
  <dt>
54
- <span class="refentrytitle"><a href="cairo-font-face.html">cairo_font_face_t</a></span><span class="refpurpose"> — Base class for font faces</span>
47
+ <span class="refentrytitle"><a href="cairo-cairo-font-face-t.html">cairo_font_face_t</a></span><span class="refpurpose"> — Base class for font faces</span>
55
48
  </dt>
56
49
  <dt>
57
- <span class="refentrytitle"><a href="cairo-scaled-font.html">cairo_scaled_font_t</a></span><span class="refpurpose"> — Font face at particular size and options</span>
50
+ <span class="refentrytitle"><a href="cairo-cairo-scaled-font-t.html">cairo_scaled_font_t</a></span><span class="refpurpose"> — Font face at particular size and options</span>
58
51
  </dt>
59
52
  <dt>
60
- <span class="refentrytitle"><a href="cairo-font-options.html">cairo_font_options_t</a></span><span class="refpurpose"> — How a font should be rendered</span>
53
+ <span class="refentrytitle"><a href="cairo-cairo-font-options-t.html">cairo_font_options_t</a></span><span class="refpurpose"> — How a font should be rendered</span>
61
54
  </dt>
62
55
  <dt>
63
- <span class="refentrytitle"><a href="cairo-ft-font.html">FreeType Fonts</a></span><span class="refpurpose"> — Font support for FreeType</span>
56
+ <span class="refentrytitle"><a href="cairo-FreeType-Fonts.html">FreeType Fonts</a></span><span class="refpurpose"> — Font support for FreeType</span>
64
57
  </dt>
65
58
  <dt>
66
- <span class="refentrytitle"><a href="cairo-win32-font.html">Win32 Fonts</a></span><span class="refpurpose"> — Font support for Microsoft Windows</span>
59
+ <span class="refentrytitle"><a href="cairo-Win32-Fonts.html">Win32 Fonts</a></span><span class="refpurpose"> — Font support for Microsoft Windows</span>
67
60
  </dt>
68
61
  <dt>
69
- <span class="refentrytitle"><a href="cairo-quartz-font.html">Quartz (CGFont) Fonts</a></span><span class="refpurpose"> — Font support via CGFont on OS X</span>
62
+ <span class="refentrytitle"><a href="cairo-Quartz-(CGFont)-Fonts.html">Quartz (CGFont) Fonts</a></span><span class="refpurpose"> — Font support via CGFont on OS X</span>
70
63
  </dt>
71
64
  <dt>
72
- <span class="refentrytitle"><a href="cairo-user-font.html">User Fonts</a></span><span class="refpurpose"> — Font support with font data provided by the user</span>
65
+ <span class="refentrytitle"><a href="cairo-User-Fonts.html">User Fonts</a></span><span class="refpurpose"> — Font support with font data provided by the user</span>
73
66
  </dt>
74
67
  </dl></dd>
75
68
  <dt><span class="chapter"><a href="cairo-surfaces.html">Surfaces</a></span></dt>
76
69
  <dd><dl>
77
70
  <dt>
78
- <span class="refentrytitle"><a href="cairo-surface.html">cairo_surface_t</a></span><span class="refpurpose"> — Base class for surfaces</span>
71
+ <span class="refentrytitle"><a href="cairo-cairo-device-t.html">cairo_device_t</a></span><span class="refpurpose"> — interface to underlying rendering system</span>
72
+ </dt>
73
+ <dt>
74
+ <span class="refentrytitle"><a href="cairo-cairo-surface-t.html">cairo_surface_t</a></span><span class="refpurpose"> — Base class for surfaces</span>
79
75
  </dt>
80
76
  <dt>
81
- <span class="refentrytitle"><a href="cairo-image-surface.html">Image Surfaces</a></span><span class="refpurpose"> — Rendering to memory buffers</span>
77
+ <span class="refentrytitle"><a href="cairo-Image-Surfaces.html">Image Surfaces</a></span><span class="refpurpose"> — Rendering to memory buffers</span>
82
78
  </dt>
83
79
  <dt>
84
- <span class="refentrytitle"><a href="cairo-pdf-surface.html">PDF Surfaces</a></span><span class="refpurpose"> — Rendering PDF documents</span>
80
+ <span class="refentrytitle"><a href="cairo-PDF-Surfaces.html">PDF Surfaces</a></span><span class="refpurpose"> — Rendering PDF documents</span>
85
81
  </dt>
86
82
  <dt>
87
- <span class="refentrytitle"><a href="cairo-png-functions.html">PNG Support</a></span><span class="refpurpose"> — Reading and writing PNG images</span>
83
+ <span class="refentrytitle"><a href="cairo-PNG-Support.html">PNG Support</a></span><span class="refpurpose"> — Reading and writing PNG images</span>
88
84
  </dt>
89
85
  <dt>
90
- <span class="refentrytitle"><a href="cairo-ps-surface.html">PostScript Surfaces</a></span><span class="refpurpose"> — Rendering PostScript documents</span>
86
+ <span class="refentrytitle"><a href="cairo-PostScript-Surfaces.html">PostScript Surfaces</a></span><span class="refpurpose"> — Rendering PostScript documents</span>
91
87
  </dt>
92
88
  <dt>
93
- <span class="refentrytitle"><a href="cairo-win32-surface.html">Win32 Surfaces</a></span><span class="refpurpose"> — Microsoft Windows surface support</span>
89
+ <span class="refentrytitle"><a href="cairo-Win32-Surfaces.html">Win32 Surfaces</a></span><span class="refpurpose"> — Microsoft Windows surface support</span>
94
90
  </dt>
95
91
  <dt>
96
- <span class="refentrytitle"><a href="cairo-svg-surface.html">SVG Surfaces</a></span><span class="refpurpose"> — Rendering SVG documents</span>
92
+ <span class="refentrytitle"><a href="cairo-SVG-Surfaces.html">SVG Surfaces</a></span><span class="refpurpose"> — Rendering SVG documents</span>
97
93
  </dt>
98
94
  <dt>
99
- <span class="refentrytitle"><a href="cairo-quartz-surface.html">Quartz Surfaces</a></span><span class="refpurpose"> — Rendering to Quartz surfaces</span>
95
+ <span class="refentrytitle"><a href="cairo-Quartz-Surfaces.html">Quartz Surfaces</a></span><span class="refpurpose"> — Rendering to Quartz surfaces</span>
100
96
  </dt>
101
97
  <dt>
102
- <span class="refentrytitle"><a href="cairo-xlib-surface.html">XLib Surfaces</a></span><span class="refpurpose"> — X Window System rendering using XLib</span>
98
+ <span class="refentrytitle"><a href="cairo-XLib-Surfaces.html">XLib Surfaces</a></span><span class="refpurpose"> — X Window System rendering using XLib</span>
103
99
  </dt>
104
100
  </dl></dd>
105
101
  <dt><span class="chapter"><a href="cairo-support.html">Utilities</a></span></dt>
106
102
  <dd><dl>
107
103
  <dt>
108
- <span class="refentrytitle"><a href="cairo-matrix.html">cairo_matrix_t</a></span><span class="refpurpose"> — Generic matrix operations</span>
104
+ <span class="refentrytitle"><a href="cairo-cairo-matrix-t.html">cairo_matrix_t</a></span><span class="refpurpose"> — Generic matrix operations</span>
109
105
  </dt>
110
106
  <dt>
111
- <span class="refentrytitle"><a href="cairo-error-status.html">Error handling</a></span><span class="refpurpose"> — Decoding cairo's status</span>
107
+ <span class="refentrytitle"><a href="cairo-Error-handling.html">Error handling</a></span><span class="refpurpose"> — Decoding cairo's status</span>
112
108
  </dt>
113
109
  <dt>
114
- <span class="refentrytitle"><a href="cairo-version-info.html">Version Information</a></span><span class="refpurpose"> — Compile-time and run-time version checks.</span>
110
+ <span class="refentrytitle"><a href="cairo-Version-Information.html">Version Information</a></span><span class="refpurpose"> — Compile-time and run-time version checks.</span>
115
111
  </dt>
116
112
  <dt>
117
- <span class="refentrytitle"><a href="cairo-types.html">Types</a></span><span class="refpurpose"> — Generic data types</span>
113
+ <span class="refentrytitle"><a href="cairo-Types.html">Types</a></span><span class="refpurpose"> — Generic data types</span>
118
114
  </dt>
119
115
  </dl></dd>
120
116
  <dt><span class="index"><a href="index-all.html">Index</a></span></dt>
@@ -122,6 +118,7 @@
122
118
  <dt><span class="index"><a href="index-1.4.html">Index of new symbols in 1.4</a></span></dt>
123
119
  <dt><span class="index"><a href="index-1.6.html">Index of new symbols in 1.6</a></span></dt>
124
120
  <dt><span class="index"><a href="index-1.8.html">Index of new symbols in 1.8</a></span></dt>
121
+ <dt><span class="index"><a href="index-1.10.html">Index of new symbols in 1.10</a></span></dt>
125
122
  <dt><span class="appendix"><a href="language-bindings.html">A. Creating a language binding for cairo</a></span></dt>
126
123
  <dd><dl>
127
124
  <dt><span class="sect1"><a href="language-bindings.html#bindings-general">General considerations</a></span></dt>
@@ -139,6 +136,6 @@
139
136
  </div>
140
137
  <div class="footer">
141
138
  <hr>
142
- Generated by GTK-Doc V1.11</div>
139
+ Generated by GTK-Doc V1.15</div>
143
140
  </body>
144
- </html>
141
+ </html>
@@ -1,163 +1,261 @@
1
- <ANCHOR id="cairo-context" href="cairo/cairo-context.html">
2
- <ANCHOR id="cairo-context.synopsis" href="cairo/cairo-context.html#cairo-context.synopsis">
3
- <ANCHOR id="cairo-context.description" href="cairo/cairo-context.html#cairo-context.description">
4
- <ANCHOR id="cairo-context.details" href="cairo/cairo-context.html#cairo-context.details">
5
- <ANCHOR id="cairo-t" href="cairo/cairo-context.html#cairo-t">
6
- <ANCHOR id="cairo-create" href="cairo/cairo-context.html#cairo-create">
7
- <ANCHOR id="cairo-reference" href="cairo/cairo-context.html#cairo-reference">
8
- <ANCHOR id="cairo-destroy" href="cairo/cairo-context.html#cairo-destroy">
9
- <ANCHOR id="cairo-status" href="cairo/cairo-context.html#cairo-status">
10
- <ANCHOR id="cairo-save" href="cairo/cairo-context.html#cairo-save">
11
- <ANCHOR id="cairo-restore" href="cairo/cairo-context.html#cairo-restore">
12
- <ANCHOR id="cairo-get-target" href="cairo/cairo-context.html#cairo-get-target">
13
- <ANCHOR id="cairo-push-group" href="cairo/cairo-context.html#cairo-push-group">
14
- <ANCHOR id="cairo-push-group-with-content" href="cairo/cairo-context.html#cairo-push-group-with-content">
15
- <ANCHOR id="cairo-pop-group" href="cairo/cairo-context.html#cairo-pop-group">
16
- <ANCHOR id="cairo-pop-group-to-source" href="cairo/cairo-context.html#cairo-pop-group-to-source">
17
- <ANCHOR id="cairo-get-group-target" href="cairo/cairo-context.html#cairo-get-group-target">
18
- <ANCHOR id="cairo-set-source-rgb" href="cairo/cairo-context.html#cairo-set-source-rgb">
19
- <ANCHOR id="cairo-set-source-rgba" href="cairo/cairo-context.html#cairo-set-source-rgba">
20
- <ANCHOR id="cairo-set-source" href="cairo/cairo-context.html#cairo-set-source">
21
- <ANCHOR id="cairo-set-source-surface" href="cairo/cairo-context.html#cairo-set-source-surface">
22
- <ANCHOR id="cairo-get-source" href="cairo/cairo-context.html#cairo-get-source">
23
- <ANCHOR id="cairo-antialias-t" href="cairo/cairo-context.html#cairo-antialias-t">
24
- <ANCHOR id="cairo-set-antialias" href="cairo/cairo-context.html#cairo-set-antialias">
25
- <ANCHOR id="cairo-get-antialias" href="cairo/cairo-context.html#cairo-get-antialias">
26
- <ANCHOR id="cairo-set-dash" href="cairo/cairo-context.html#cairo-set-dash">
27
- <ANCHOR id="cairo-get-dash-count" href="cairo/cairo-context.html#cairo-get-dash-count">
28
- <ANCHOR id="cairo-get-dash" href="cairo/cairo-context.html#cairo-get-dash">
29
- <ANCHOR id="cairo-fill-rule-t" href="cairo/cairo-context.html#cairo-fill-rule-t">
30
- <ANCHOR id="cairo-set-fill-rule" href="cairo/cairo-context.html#cairo-set-fill-rule">
31
- <ANCHOR id="cairo-get-fill-rule" href="cairo/cairo-context.html#cairo-get-fill-rule">
32
- <ANCHOR id="cairo-line-cap-t" href="cairo/cairo-context.html#cairo-line-cap-t">
33
- <ANCHOR id="cairo-set-line-cap" href="cairo/cairo-context.html#cairo-set-line-cap">
34
- <ANCHOR id="cairo-get-line-cap" href="cairo/cairo-context.html#cairo-get-line-cap">
35
- <ANCHOR id="cairo-line-join-t" href="cairo/cairo-context.html#cairo-line-join-t">
36
- <ANCHOR id="cairo-set-line-join" href="cairo/cairo-context.html#cairo-set-line-join">
37
- <ANCHOR id="cairo-get-line-join" href="cairo/cairo-context.html#cairo-get-line-join">
38
- <ANCHOR id="cairo-set-line-width" href="cairo/cairo-context.html#cairo-set-line-width">
39
- <ANCHOR id="cairo-get-line-width" href="cairo/cairo-context.html#cairo-get-line-width">
40
- <ANCHOR id="cairo-set-miter-limit" href="cairo/cairo-context.html#cairo-set-miter-limit">
41
- <ANCHOR id="cairo-get-miter-limit" href="cairo/cairo-context.html#cairo-get-miter-limit">
42
- <ANCHOR id="cairo-operator-t" href="cairo/cairo-context.html#cairo-operator-t">
43
- <ANCHOR id="cairo-set-operator" href="cairo/cairo-context.html#cairo-set-operator">
44
- <ANCHOR id="cairo-get-operator" href="cairo/cairo-context.html#cairo-get-operator">
45
- <ANCHOR id="cairo-set-tolerance" href="cairo/cairo-context.html#cairo-set-tolerance">
46
- <ANCHOR id="cairo-get-tolerance" href="cairo/cairo-context.html#cairo-get-tolerance">
47
- <ANCHOR id="cairo-clip" href="cairo/cairo-context.html#cairo-clip">
48
- <ANCHOR id="cairo-clip-preserve" href="cairo/cairo-context.html#cairo-clip-preserve">
49
- <ANCHOR id="cairo-clip-extents" href="cairo/cairo-context.html#cairo-clip-extents">
50
- <ANCHOR id="cairo-reset-clip" href="cairo/cairo-context.html#cairo-reset-clip">
51
- <ANCHOR id="cairo-rectangle-t" href="cairo/cairo-context.html#cairo-rectangle-t">
52
- <ANCHOR id="cairo-rectangle-list-t" href="cairo/cairo-context.html#cairo-rectangle-list-t">
53
- <ANCHOR id="cairo-rectangle-list-destroy" href="cairo/cairo-context.html#cairo-rectangle-list-destroy">
54
- <ANCHOR id="cairo-copy-clip-rectangle-list" href="cairo/cairo-context.html#cairo-copy-clip-rectangle-list">
55
- <ANCHOR id="cairo-fill" href="cairo/cairo-context.html#cairo-fill">
56
- <ANCHOR id="cairo-fill-preserve" href="cairo/cairo-context.html#cairo-fill-preserve">
57
- <ANCHOR id="cairo-fill-extents" href="cairo/cairo-context.html#cairo-fill-extents">
58
- <ANCHOR id="cairo-in-fill" href="cairo/cairo-context.html#cairo-in-fill">
59
- <ANCHOR id="cairo-mask" href="cairo/cairo-context.html#cairo-mask">
60
- <ANCHOR id="cairo-mask-surface" href="cairo/cairo-context.html#cairo-mask-surface">
61
- <ANCHOR id="cairo-paint" href="cairo/cairo-context.html#cairo-paint">
62
- <ANCHOR id="cairo-paint-with-alpha" href="cairo/cairo-context.html#cairo-paint-with-alpha">
63
- <ANCHOR id="cairo-stroke" href="cairo/cairo-context.html#cairo-stroke">
64
- <ANCHOR id="cairo-stroke-preserve" href="cairo/cairo-context.html#cairo-stroke-preserve">
65
- <ANCHOR id="cairo-stroke-extents" href="cairo/cairo-context.html#cairo-stroke-extents">
66
- <ANCHOR id="cairo-in-stroke" href="cairo/cairo-context.html#cairo-in-stroke">
67
- <ANCHOR id="cairo-copy-page" href="cairo/cairo-context.html#cairo-copy-page">
68
- <ANCHOR id="cairo-show-page" href="cairo/cairo-context.html#cairo-show-page">
69
- <ANCHOR id="cairo-get-reference-count" href="cairo/cairo-context.html#cairo-get-reference-count">
70
- <ANCHOR id="cairo-set-user-data" href="cairo/cairo-context.html#cairo-set-user-data">
71
- <ANCHOR id="cairo-get-user-data" href="cairo/cairo-context.html#cairo-get-user-data">
72
- <ANCHOR id="cairo-context.see-also" href="cairo/cairo-context.html#cairo-context.see-also">
73
- <ANCHOR id="cairo-paths" href="cairo/cairo-paths.html">
74
- <ANCHOR id="cairo-paths.synopsis" href="cairo/cairo-paths.html#cairo-paths.synopsis">
75
- <ANCHOR id="cairo-paths.description" href="cairo/cairo-paths.html#cairo-paths.description">
76
- <ANCHOR id="cairo-paths.details" href="cairo/cairo-paths.html#cairo-paths.details">
77
- <ANCHOR id="cairo-path-t" href="cairo/cairo-paths.html#cairo-path-t">
78
- <ANCHOR id="cairo-path-data-t" href="cairo/cairo-paths.html#cairo-path-data-t">
79
- <ANCHOR id="cairo-path-data-type-t" href="cairo/cairo-paths.html#cairo-path-data-type-t">
80
- <ANCHOR id="cairo-copy-path" href="cairo/cairo-paths.html#cairo-copy-path">
81
- <ANCHOR id="cairo-copy-path-flat" href="cairo/cairo-paths.html#cairo-copy-path-flat">
82
- <ANCHOR id="cairo-path-destroy" href="cairo/cairo-paths.html#cairo-path-destroy">
83
- <ANCHOR id="cairo-append-path" href="cairo/cairo-paths.html#cairo-append-path">
84
- <ANCHOR id="cairo-has-current-point" href="cairo/cairo-paths.html#cairo-has-current-point">
85
- <ANCHOR id="cairo-get-current-point" href="cairo/cairo-paths.html#cairo-get-current-point">
86
- <ANCHOR id="cairo-new-path" href="cairo/cairo-paths.html#cairo-new-path">
87
- <ANCHOR id="cairo-new-sub-path" href="cairo/cairo-paths.html#cairo-new-sub-path">
88
- <ANCHOR id="cairo-close-path" href="cairo/cairo-paths.html#cairo-close-path">
89
- <ANCHOR id="cairo-arc" href="cairo/cairo-paths.html#cairo-arc">
90
- <ANCHOR id="cairo-arc-negative" href="cairo/cairo-paths.html#cairo-arc-negative">
91
- <ANCHOR id="cairo-curve-to" href="cairo/cairo-paths.html#cairo-curve-to">
92
- <ANCHOR id="cairo-line-to" href="cairo/cairo-paths.html#cairo-line-to">
93
- <ANCHOR id="cairo-move-to" href="cairo/cairo-paths.html#cairo-move-to">
94
- <ANCHOR id="cairo-rectangle" href="cairo/cairo-paths.html#cairo-rectangle">
95
- <ANCHOR id="cairo-glyph-path" href="cairo/cairo-paths.html#cairo-glyph-path">
96
- <ANCHOR id="cairo-text-path" href="cairo/cairo-paths.html#cairo-text-path">
97
- <ANCHOR id="cairo-rel-curve-to" href="cairo/cairo-paths.html#cairo-rel-curve-to">
98
- <ANCHOR id="cairo-rel-line-to" href="cairo/cairo-paths.html#cairo-rel-line-to">
99
- <ANCHOR id="cairo-rel-move-to" href="cairo/cairo-paths.html#cairo-rel-move-to">
100
- <ANCHOR id="cairo-path-extents" href="cairo/cairo-paths.html#cairo-path-extents">
101
- <ANCHOR id="cairo-pattern" href="cairo/cairo-pattern.html">
102
- <ANCHOR id="cairo-pattern.synopsis" href="cairo/cairo-pattern.html#cairo-pattern.synopsis">
103
- <ANCHOR id="cairo-pattern.description" href="cairo/cairo-pattern.html#cairo-pattern.description">
104
- <ANCHOR id="cairo-pattern.details" href="cairo/cairo-pattern.html#cairo-pattern.details">
105
- <ANCHOR id="cairo-pattern-t" href="cairo/cairo-pattern.html#cairo-pattern-t">
106
- <ANCHOR id="cairo-pattern-add-color-stop-rgb" href="cairo/cairo-pattern.html#cairo-pattern-add-color-stop-rgb">
107
- <ANCHOR id="cairo-pattern-add-color-stop-rgba" href="cairo/cairo-pattern.html#cairo-pattern-add-color-stop-rgba">
108
- <ANCHOR id="cairo-pattern-get-color-stop-count" href="cairo/cairo-pattern.html#cairo-pattern-get-color-stop-count">
109
- <ANCHOR id="cairo-pattern-get-color-stop-rgba" href="cairo/cairo-pattern.html#cairo-pattern-get-color-stop-rgba">
110
- <ANCHOR id="cairo-pattern-create-rgb" href="cairo/cairo-pattern.html#cairo-pattern-create-rgb">
111
- <ANCHOR id="cairo-pattern-create-rgba" href="cairo/cairo-pattern.html#cairo-pattern-create-rgba">
112
- <ANCHOR id="cairo-pattern-get-rgba" href="cairo/cairo-pattern.html#cairo-pattern-get-rgba">
113
- <ANCHOR id="cairo-pattern-create-for-surface" href="cairo/cairo-pattern.html#cairo-pattern-create-for-surface">
114
- <ANCHOR id="cairo-pattern-get-surface" href="cairo/cairo-pattern.html#cairo-pattern-get-surface">
115
- <ANCHOR id="cairo-pattern-create-linear" href="cairo/cairo-pattern.html#cairo-pattern-create-linear">
116
- <ANCHOR id="cairo-pattern-get-linear-points" href="cairo/cairo-pattern.html#cairo-pattern-get-linear-points">
117
- <ANCHOR id="cairo-pattern-create-radial" href="cairo/cairo-pattern.html#cairo-pattern-create-radial">
118
- <ANCHOR id="cairo-pattern-get-radial-circles" href="cairo/cairo-pattern.html#cairo-pattern-get-radial-circles">
119
- <ANCHOR id="cairo-pattern-reference" href="cairo/cairo-pattern.html#cairo-pattern-reference">
120
- <ANCHOR id="cairo-pattern-destroy" href="cairo/cairo-pattern.html#cairo-pattern-destroy">
121
- <ANCHOR id="cairo-pattern-status" href="cairo/cairo-pattern.html#cairo-pattern-status">
122
- <ANCHOR id="cairo-extend-t" href="cairo/cairo-pattern.html#cairo-extend-t">
123
- <ANCHOR id="cairo-pattern-set-extend" href="cairo/cairo-pattern.html#cairo-pattern-set-extend">
124
- <ANCHOR id="cairo-pattern-get-extend" href="cairo/cairo-pattern.html#cairo-pattern-get-extend">
125
- <ANCHOR id="cairo-filter-t" href="cairo/cairo-pattern.html#cairo-filter-t">
126
- <ANCHOR id="cairo-pattern-set-filter" href="cairo/cairo-pattern.html#cairo-pattern-set-filter">
127
- <ANCHOR id="cairo-pattern-get-filter" href="cairo/cairo-pattern.html#cairo-pattern-get-filter">
128
- <ANCHOR id="cairo-pattern-set-matrix" href="cairo/cairo-pattern.html#cairo-pattern-set-matrix">
129
- <ANCHOR id="cairo-pattern-get-matrix" href="cairo/cairo-pattern.html#cairo-pattern-get-matrix">
130
- <ANCHOR id="cairo-pattern-type-t" href="cairo/cairo-pattern.html#cairo-pattern-type-t">
131
- <ANCHOR id="cairo-pattern-get-type" href="cairo/cairo-pattern.html#cairo-pattern-get-type">
132
- <ANCHOR id="cairo-pattern-get-reference-count" href="cairo/cairo-pattern.html#cairo-pattern-get-reference-count">
133
- <ANCHOR id="cairo-pattern-set-user-data" href="cairo/cairo-pattern.html#cairo-pattern-set-user-data">
134
- <ANCHOR id="cairo-pattern-get-user-data" href="cairo/cairo-pattern.html#cairo-pattern-get-user-data">
135
- <ANCHOR id="cairo-pattern.see-also" href="cairo/cairo-pattern.html#cairo-pattern.see-also">
136
- <ANCHOR id="cairo-transformations" href="cairo/cairo-transformations.html">
137
- <ANCHOR id="cairo-transformations.synopsis" href="cairo/cairo-transformations.html#cairo-transformations.synopsis">
138
- <ANCHOR id="cairo-transformations.description" href="cairo/cairo-transformations.html#cairo-transformations.description">
139
- <ANCHOR id="cairo-transformations.details" href="cairo/cairo-transformations.html#cairo-transformations.details">
140
- <ANCHOR id="cairo-translate" href="cairo/cairo-transformations.html#cairo-translate">
141
- <ANCHOR id="cairo-scale" href="cairo/cairo-transformations.html#cairo-scale">
142
- <ANCHOR id="cairo-rotate" href="cairo/cairo-transformations.html#cairo-rotate">
143
- <ANCHOR id="cairo-transform" href="cairo/cairo-transformations.html#cairo-transform">
144
- <ANCHOR id="cairo-set-matrix" href="cairo/cairo-transformations.html#cairo-set-matrix">
145
- <ANCHOR id="cairo-get-matrix" href="cairo/cairo-transformations.html#cairo-get-matrix">
146
- <ANCHOR id="cairo-identity-matrix" href="cairo/cairo-transformations.html#cairo-identity-matrix">
147
- <ANCHOR id="cairo-user-to-device" href="cairo/cairo-transformations.html#cairo-user-to-device">
148
- <ANCHOR id="cairo-user-to-device-distance" href="cairo/cairo-transformations.html#cairo-user-to-device-distance">
149
- <ANCHOR id="cairo-device-to-user" href="cairo/cairo-transformations.html#cairo-device-to-user">
150
- <ANCHOR id="cairo-device-to-user-distance" href="cairo/cairo-transformations.html#cairo-device-to-user-distance">
151
- <ANCHOR id="cairo-transformations.see-also" href="cairo/cairo-transformations.html#cairo-transformations.see-also">
1
+ <ANCHOR id="cairo-cairo-t" href="cairo/cairo-cairo-t.html">
2
+ <ANCHOR id="cairo-cairo-t.synopsis" href="cairo/cairo-cairo-t.html#cairo-cairo-t.synopsis">
3
+ <ANCHOR id="cairo-cairo-t.description" href="cairo/cairo-cairo-t.html#cairo-cairo-t.description">
4
+ <ANCHOR id="cairo-cairo-t.details" href="cairo/cairo-cairo-t.html#cairo-cairo-t.details">
5
+ <ANCHOR id="cairo-t" href="cairo/cairo-cairo-t.html#cairo-t">
6
+ <ANCHOR id="cairo-create" href="cairo/cairo-cairo-t.html#cairo-create">
7
+ <ANCHOR id="cairo-reference" href="cairo/cairo-cairo-t.html#cairo-reference">
8
+ <ANCHOR id="cairo-destroy" href="cairo/cairo-cairo-t.html#cairo-destroy">
9
+ <ANCHOR id="cairo-status" href="cairo/cairo-cairo-t.html#cairo-status">
10
+ <ANCHOR id="cairo-save" href="cairo/cairo-cairo-t.html#cairo-save">
11
+ <ANCHOR id="cairo-restore" href="cairo/cairo-cairo-t.html#cairo-restore">
12
+ <ANCHOR id="cairo-get-target" href="cairo/cairo-cairo-t.html#cairo-get-target">
13
+ <ANCHOR id="cairo-push-group" href="cairo/cairo-cairo-t.html#cairo-push-group">
14
+ <ANCHOR id="cairo-push-group-with-content" href="cairo/cairo-cairo-t.html#cairo-push-group-with-content">
15
+ <ANCHOR id="cairo-pop-group" href="cairo/cairo-cairo-t.html#cairo-pop-group">
16
+ <ANCHOR id="cairo-pop-group-to-source" href="cairo/cairo-cairo-t.html#cairo-pop-group-to-source">
17
+ <ANCHOR id="cairo-get-group-target" href="cairo/cairo-cairo-t.html#cairo-get-group-target">
18
+ <ANCHOR id="cairo-set-source-rgb" href="cairo/cairo-cairo-t.html#cairo-set-source-rgb">
19
+ <ANCHOR id="cairo-set-source-rgba" href="cairo/cairo-cairo-t.html#cairo-set-source-rgba">
20
+ <ANCHOR id="cairo-set-source" href="cairo/cairo-cairo-t.html#cairo-set-source">
21
+ <ANCHOR id="cairo-set-source-surface" href="cairo/cairo-cairo-t.html#cairo-set-source-surface">
22
+ <ANCHOR id="cairo-get-source" href="cairo/cairo-cairo-t.html#cairo-get-source">
23
+ <ANCHOR id="cairo-antialias-t" href="cairo/cairo-cairo-t.html#cairo-antialias-t">
24
+ <ANCHOR id="CAIRO-ANTIALIAS-DEFAULT:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-ANTIALIAS-DEFAULT:CAPS">
25
+ <ANCHOR id="CAIRO-ANTIALIAS-NONE:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-ANTIALIAS-NONE:CAPS">
26
+ <ANCHOR id="CAIRO-ANTIALIAS-GRAY:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-ANTIALIAS-GRAY:CAPS">
27
+ <ANCHOR id="CAIRO-ANTIALIAS-SUBPIXEL:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-ANTIALIAS-SUBPIXEL:CAPS">
28
+ <ANCHOR id="cairo-set-antialias" href="cairo/cairo-cairo-t.html#cairo-set-antialias">
29
+ <ANCHOR id="cairo-get-antialias" href="cairo/cairo-cairo-t.html#cairo-get-antialias">
30
+ <ANCHOR id="cairo-set-dash" href="cairo/cairo-cairo-t.html#cairo-set-dash">
31
+ <ANCHOR id="cairo-get-dash-count" href="cairo/cairo-cairo-t.html#cairo-get-dash-count">
32
+ <ANCHOR id="cairo-get-dash" href="cairo/cairo-cairo-t.html#cairo-get-dash">
33
+ <ANCHOR id="cairo-fill-rule-t" href="cairo/cairo-cairo-t.html#cairo-fill-rule-t">
34
+ <ANCHOR id="CAIRO-FILL-RULE-WINDING:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-FILL-RULE-WINDING:CAPS">
35
+ <ANCHOR id="CAIRO-FILL-RULE-EVEN-ODD:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-FILL-RULE-EVEN-ODD:CAPS">
36
+ <ANCHOR id="cairo-set-fill-rule" href="cairo/cairo-cairo-t.html#cairo-set-fill-rule">
37
+ <ANCHOR id="cairo-get-fill-rule" href="cairo/cairo-cairo-t.html#cairo-get-fill-rule">
38
+ <ANCHOR id="cairo-line-cap-t" href="cairo/cairo-cairo-t.html#cairo-line-cap-t">
39
+ <ANCHOR id="CAIRO-LINE-CAP-BUTT:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-LINE-CAP-BUTT:CAPS">
40
+ <ANCHOR id="CAIRO-LINE-CAP-ROUND:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-LINE-CAP-ROUND:CAPS">
41
+ <ANCHOR id="CAIRO-LINE-CAP-SQUARE:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-LINE-CAP-SQUARE:CAPS">
42
+ <ANCHOR id="cairo-set-line-cap" href="cairo/cairo-cairo-t.html#cairo-set-line-cap">
43
+ <ANCHOR id="cairo-get-line-cap" href="cairo/cairo-cairo-t.html#cairo-get-line-cap">
44
+ <ANCHOR id="cairo-line-join-t" href="cairo/cairo-cairo-t.html#cairo-line-join-t">
45
+ <ANCHOR id="CAIRO-LINE-JOIN-MITER:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-LINE-JOIN-MITER:CAPS">
46
+ <ANCHOR id="CAIRO-LINE-JOIN-ROUND:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-LINE-JOIN-ROUND:CAPS">
47
+ <ANCHOR id="CAIRO-LINE-JOIN-BEVEL:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-LINE-JOIN-BEVEL:CAPS">
48
+ <ANCHOR id="cairo-set-line-join" href="cairo/cairo-cairo-t.html#cairo-set-line-join">
49
+ <ANCHOR id="cairo-get-line-join" href="cairo/cairo-cairo-t.html#cairo-get-line-join">
50
+ <ANCHOR id="cairo-set-line-width" href="cairo/cairo-cairo-t.html#cairo-set-line-width">
51
+ <ANCHOR id="cairo-get-line-width" href="cairo/cairo-cairo-t.html#cairo-get-line-width">
52
+ <ANCHOR id="cairo-set-miter-limit" href="cairo/cairo-cairo-t.html#cairo-set-miter-limit">
53
+ <ANCHOR id="cairo-get-miter-limit" href="cairo/cairo-cairo-t.html#cairo-get-miter-limit">
54
+ <ANCHOR id="cairo-operator-t" href="cairo/cairo-cairo-t.html#cairo-operator-t">
55
+ <ANCHOR id="CAIRO-OPERATOR-CLEAR:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-CLEAR:CAPS">
56
+ <ANCHOR id="CAIRO-OPERATOR-SOURCE:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-SOURCE:CAPS">
57
+ <ANCHOR id="CAIRO-OPERATOR-OVER:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-OVER:CAPS">
58
+ <ANCHOR id="CAIRO-OPERATOR-IN:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-IN:CAPS">
59
+ <ANCHOR id="CAIRO-OPERATOR-OUT:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-OUT:CAPS">
60
+ <ANCHOR id="CAIRO-OPERATOR-ATOP:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-ATOP:CAPS">
61
+ <ANCHOR id="CAIRO-OPERATOR-DEST:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-DEST:CAPS">
62
+ <ANCHOR id="CAIRO-OPERATOR-DEST-OVER:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-DEST-OVER:CAPS">
63
+ <ANCHOR id="CAIRO-OPERATOR-DEST-IN:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-DEST-IN:CAPS">
64
+ <ANCHOR id="CAIRO-OPERATOR-DEST-OUT:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-DEST-OUT:CAPS">
65
+ <ANCHOR id="CAIRO-OPERATOR-DEST-ATOP:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-DEST-ATOP:CAPS">
66
+ <ANCHOR id="CAIRO-OPERATOR-XOR:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-XOR:CAPS">
67
+ <ANCHOR id="CAIRO-OPERATOR-ADD:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-ADD:CAPS">
68
+ <ANCHOR id="CAIRO-OPERATOR-SATURATE:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-SATURATE:CAPS">
69
+ <ANCHOR id="CAIRO-OPERATOR-MULTIPLY:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-MULTIPLY:CAPS">
70
+ <ANCHOR id="CAIRO-OPERATOR-SCREEN:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-SCREEN:CAPS">
71
+ <ANCHOR id="CAIRO-OPERATOR-OVERLAY:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-OVERLAY:CAPS">
72
+ <ANCHOR id="CAIRO-OPERATOR-DARKEN:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-DARKEN:CAPS">
73
+ <ANCHOR id="CAIRO-OPERATOR-LIGHTEN:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-LIGHTEN:CAPS">
74
+ <ANCHOR id="CAIRO-OPERATOR-COLOR-DODGE:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-COLOR-DODGE:CAPS">
75
+ <ANCHOR id="CAIRO-OPERATOR-COLOR-BURN:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-COLOR-BURN:CAPS">
76
+ <ANCHOR id="CAIRO-OPERATOR-HARD-LIGHT:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-HARD-LIGHT:CAPS">
77
+ <ANCHOR id="CAIRO-OPERATOR-SOFT-LIGHT:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-SOFT-LIGHT:CAPS">
78
+ <ANCHOR id="CAIRO-OPERATOR-DIFFERENCE:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-DIFFERENCE:CAPS">
79
+ <ANCHOR id="CAIRO-OPERATOR-EXCLUSION:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-EXCLUSION:CAPS">
80
+ <ANCHOR id="CAIRO-OPERATOR-HSL-HUE:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-HSL-HUE:CAPS">
81
+ <ANCHOR id="CAIRO-OPERATOR-HSL-SATURATION:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-HSL-SATURATION:CAPS">
82
+ <ANCHOR id="CAIRO-OPERATOR-HSL-COLOR:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-HSL-COLOR:CAPS">
83
+ <ANCHOR id="CAIRO-OPERATOR-HSL-LUMINOSITY:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-HSL-LUMINOSITY:CAPS">
84
+ <ANCHOR id="cairo-set-operator" href="cairo/cairo-cairo-t.html#cairo-set-operator">
85
+ <ANCHOR id="cairo-get-operator" href="cairo/cairo-cairo-t.html#cairo-get-operator">
86
+ <ANCHOR id="cairo-set-tolerance" href="cairo/cairo-cairo-t.html#cairo-set-tolerance">
87
+ <ANCHOR id="cairo-get-tolerance" href="cairo/cairo-cairo-t.html#cairo-get-tolerance">
88
+ <ANCHOR id="cairo-clip" href="cairo/cairo-cairo-t.html#cairo-clip">
89
+ <ANCHOR id="cairo-clip-preserve" href="cairo/cairo-cairo-t.html#cairo-clip-preserve">
90
+ <ANCHOR id="cairo-clip-extents" href="cairo/cairo-cairo-t.html#cairo-clip-extents">
91
+ <ANCHOR id="cairo-in-clip" href="cairo/cairo-cairo-t.html#cairo-in-clip">
92
+ <ANCHOR id="cairo-reset-clip" href="cairo/cairo-cairo-t.html#cairo-reset-clip">
93
+ <ANCHOR id="cairo-rectangle-t" href="cairo/cairo-cairo-t.html#cairo-rectangle-t">
94
+ <ANCHOR id="cairo-rectangle-list-t" href="cairo/cairo-cairo-t.html#cairo-rectangle-list-t">
95
+ <ANCHOR id="cairo-rectangle-list-destroy" href="cairo/cairo-cairo-t.html#cairo-rectangle-list-destroy">
96
+ <ANCHOR id="cairo-copy-clip-rectangle-list" href="cairo/cairo-cairo-t.html#cairo-copy-clip-rectangle-list">
97
+ <ANCHOR id="cairo-fill" href="cairo/cairo-cairo-t.html#cairo-fill">
98
+ <ANCHOR id="cairo-fill-preserve" href="cairo/cairo-cairo-t.html#cairo-fill-preserve">
99
+ <ANCHOR id="cairo-fill-extents" href="cairo/cairo-cairo-t.html#cairo-fill-extents">
100
+ <ANCHOR id="cairo-in-fill" href="cairo/cairo-cairo-t.html#cairo-in-fill">
101
+ <ANCHOR id="cairo-mask" href="cairo/cairo-cairo-t.html#cairo-mask">
102
+ <ANCHOR id="cairo-mask-surface" href="cairo/cairo-cairo-t.html#cairo-mask-surface">
103
+ <ANCHOR id="cairo-paint" href="cairo/cairo-cairo-t.html#cairo-paint">
104
+ <ANCHOR id="cairo-paint-with-alpha" href="cairo/cairo-cairo-t.html#cairo-paint-with-alpha">
105
+ <ANCHOR id="cairo-stroke" href="cairo/cairo-cairo-t.html#cairo-stroke">
106
+ <ANCHOR id="cairo-stroke-preserve" href="cairo/cairo-cairo-t.html#cairo-stroke-preserve">
107
+ <ANCHOR id="cairo-stroke-extents" href="cairo/cairo-cairo-t.html#cairo-stroke-extents">
108
+ <ANCHOR id="cairo-in-stroke" href="cairo/cairo-cairo-t.html#cairo-in-stroke">
109
+ <ANCHOR id="cairo-copy-page" href="cairo/cairo-cairo-t.html#cairo-copy-page">
110
+ <ANCHOR id="cairo-show-page" href="cairo/cairo-cairo-t.html#cairo-show-page">
111
+ <ANCHOR id="cairo-get-reference-count" href="cairo/cairo-cairo-t.html#cairo-get-reference-count">
112
+ <ANCHOR id="cairo-set-user-data" href="cairo/cairo-cairo-t.html#cairo-set-user-data">
113
+ <ANCHOR id="cairo-get-user-data" href="cairo/cairo-cairo-t.html#cairo-get-user-data">
114
+ <ANCHOR id="cairo-cairo-t.see-also" href="cairo/cairo-cairo-t.html#cairo-cairo-t.see-also">
115
+ <ANCHOR id="cairo-Paths" href="cairo/cairo-Paths.html">
116
+ <ANCHOR id="cairo-Paths.synopsis" href="cairo/cairo-Paths.html#cairo-Paths.synopsis">
117
+ <ANCHOR id="cairo-Paths.description" href="cairo/cairo-Paths.html#cairo-Paths.description">
118
+ <ANCHOR id="cairo-Paths.details" href="cairo/cairo-Paths.html#cairo-Paths.details">
119
+ <ANCHOR id="cairo-path-t" href="cairo/cairo-Paths.html#cairo-path-t">
120
+ <ANCHOR id="cairo-path-data-t" href="cairo/cairo-Paths.html#cairo-path-data-t">
121
+ <ANCHOR id="cairo-path-data-type-t" href="cairo/cairo-Paths.html#cairo-path-data-type-t">
122
+ <ANCHOR id="CAIRO-PATH-MOVE-TO:CAPS" href="cairo/cairo-Paths.html#CAIRO-PATH-MOVE-TO:CAPS">
123
+ <ANCHOR id="CAIRO-PATH-LINE-TO:CAPS" href="cairo/cairo-Paths.html#CAIRO-PATH-LINE-TO:CAPS">
124
+ <ANCHOR id="CAIRO-PATH-CURVE-TO:CAPS" href="cairo/cairo-Paths.html#CAIRO-PATH-CURVE-TO:CAPS">
125
+ <ANCHOR id="CAIRO-PATH-CLOSE-PATH:CAPS" href="cairo/cairo-Paths.html#CAIRO-PATH-CLOSE-PATH:CAPS">
126
+ <ANCHOR id="cairo-copy-path" href="cairo/cairo-Paths.html#cairo-copy-path">
127
+ <ANCHOR id="cairo-copy-path-flat" href="cairo/cairo-Paths.html#cairo-copy-path-flat">
128
+ <ANCHOR id="cairo-path-destroy" href="cairo/cairo-Paths.html#cairo-path-destroy">
129
+ <ANCHOR id="cairo-append-path" href="cairo/cairo-Paths.html#cairo-append-path">
130
+ <ANCHOR id="cairo-has-current-point" href="cairo/cairo-Paths.html#cairo-has-current-point">
131
+ <ANCHOR id="cairo-get-current-point" href="cairo/cairo-Paths.html#cairo-get-current-point">
132
+ <ANCHOR id="cairo-new-path" href="cairo/cairo-Paths.html#cairo-new-path">
133
+ <ANCHOR id="cairo-new-sub-path" href="cairo/cairo-Paths.html#cairo-new-sub-path">
134
+ <ANCHOR id="cairo-close-path" href="cairo/cairo-Paths.html#cairo-close-path">
135
+ <ANCHOR id="cairo-arc" href="cairo/cairo-Paths.html#cairo-arc">
136
+ <ANCHOR id="cairo-arc-negative" href="cairo/cairo-Paths.html#cairo-arc-negative">
137
+ <ANCHOR id="cairo-curve-to" href="cairo/cairo-Paths.html#cairo-curve-to">
138
+ <ANCHOR id="cairo-line-to" href="cairo/cairo-Paths.html#cairo-line-to">
139
+ <ANCHOR id="cairo-move-to" href="cairo/cairo-Paths.html#cairo-move-to">
140
+ <ANCHOR id="cairo-rectangle" href="cairo/cairo-Paths.html#cairo-rectangle">
141
+ <ANCHOR id="cairo-glyph-path" href="cairo/cairo-Paths.html#cairo-glyph-path">
142
+ <ANCHOR id="cairo-text-path" href="cairo/cairo-Paths.html#cairo-text-path">
143
+ <ANCHOR id="cairo-rel-curve-to" href="cairo/cairo-Paths.html#cairo-rel-curve-to">
144
+ <ANCHOR id="cairo-rel-line-to" href="cairo/cairo-Paths.html#cairo-rel-line-to">
145
+ <ANCHOR id="cairo-rel-move-to" href="cairo/cairo-Paths.html#cairo-rel-move-to">
146
+ <ANCHOR id="cairo-path-extents" href="cairo/cairo-Paths.html#cairo-path-extents">
147
+ <ANCHOR id="cairo-cairo-pattern-t" href="cairo/cairo-cairo-pattern-t.html">
148
+ <ANCHOR id="cairo-cairo-pattern-t.synopsis" href="cairo/cairo-cairo-pattern-t.html#cairo-cairo-pattern-t.synopsis">
149
+ <ANCHOR id="cairo-cairo-pattern-t.description" href="cairo/cairo-cairo-pattern-t.html#cairo-cairo-pattern-t.description">
150
+ <ANCHOR id="cairo-cairo-pattern-t.details" href="cairo/cairo-cairo-pattern-t.html#cairo-cairo-pattern-t.details">
151
+ <ANCHOR id="cairo-pattern-t" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-t">
152
+ <ANCHOR id="cairo-pattern-add-color-stop-rgb" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-add-color-stop-rgb">
153
+ <ANCHOR id="cairo-pattern-add-color-stop-rgba" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-add-color-stop-rgba">
154
+ <ANCHOR id="cairo-pattern-get-color-stop-count" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-color-stop-count">
155
+ <ANCHOR id="cairo-pattern-get-color-stop-rgba" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-color-stop-rgba">
156
+ <ANCHOR id="cairo-pattern-create-rgb" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-create-rgb">
157
+ <ANCHOR id="cairo-pattern-create-rgba" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-create-rgba">
158
+ <ANCHOR id="cairo-pattern-get-rgba" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-rgba">
159
+ <ANCHOR id="cairo-pattern-create-for-surface" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-create-for-surface">
160
+ <ANCHOR id="cairo-pattern-get-surface" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-surface">
161
+ <ANCHOR id="cairo-pattern-create-linear" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-create-linear">
162
+ <ANCHOR id="cairo-pattern-get-linear-points" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-linear-points">
163
+ <ANCHOR id="cairo-pattern-create-radial" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-create-radial">
164
+ <ANCHOR id="cairo-pattern-get-radial-circles" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-radial-circles">
165
+ <ANCHOR id="cairo-pattern-reference" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-reference">
166
+ <ANCHOR id="cairo-pattern-destroy" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-destroy">
167
+ <ANCHOR id="cairo-pattern-status" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-status">
168
+ <ANCHOR id="cairo-extend-t" href="cairo/cairo-cairo-pattern-t.html#cairo-extend-t">
169
+ <ANCHOR id="CAIRO-EXTEND-NONE:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-EXTEND-NONE:CAPS">
170
+ <ANCHOR id="CAIRO-EXTEND-REPEAT:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-EXTEND-REPEAT:CAPS">
171
+ <ANCHOR id="CAIRO-EXTEND-REFLECT:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-EXTEND-REFLECT:CAPS">
172
+ <ANCHOR id="CAIRO-EXTEND-PAD:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-EXTEND-PAD:CAPS">
173
+ <ANCHOR id="cairo-pattern-set-extend" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-extend">
174
+ <ANCHOR id="cairo-pattern-get-extend" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-extend">
175
+ <ANCHOR id="cairo-filter-t" href="cairo/cairo-cairo-pattern-t.html#cairo-filter-t">
176
+ <ANCHOR id="CAIRO-FILTER-FAST:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-FILTER-FAST:CAPS">
177
+ <ANCHOR id="CAIRO-FILTER-GOOD:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-FILTER-GOOD:CAPS">
178
+ <ANCHOR id="CAIRO-FILTER-BEST:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-FILTER-BEST:CAPS">
179
+ <ANCHOR id="CAIRO-FILTER-NEAREST:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-FILTER-NEAREST:CAPS">
180
+ <ANCHOR id="CAIRO-FILTER-BILINEAR:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-FILTER-BILINEAR:CAPS">
181
+ <ANCHOR id="CAIRO-FILTER-GAUSSIAN:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-FILTER-GAUSSIAN:CAPS">
182
+ <ANCHOR id="cairo-pattern-set-filter" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-filter">
183
+ <ANCHOR id="cairo-pattern-get-filter" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-filter">
184
+ <ANCHOR id="cairo-pattern-set-matrix" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-matrix">
185
+ <ANCHOR id="cairo-pattern-get-matrix" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-matrix">
186
+ <ANCHOR id="cairo-pattern-type-t" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-type-t">
187
+ <ANCHOR id="CAIRO-PATTERN-TYPE-SOLID:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-PATTERN-TYPE-SOLID:CAPS">
188
+ <ANCHOR id="CAIRO-PATTERN-TYPE-SURFACE:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-PATTERN-TYPE-SURFACE:CAPS">
189
+ <ANCHOR id="CAIRO-PATTERN-TYPE-LINEAR:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-PATTERN-TYPE-LINEAR:CAPS">
190
+ <ANCHOR id="CAIRO-PATTERN-TYPE-RADIAL:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-PATTERN-TYPE-RADIAL:CAPS">
191
+ <ANCHOR id="cairo-pattern-get-type" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-type">
192
+ <ANCHOR id="cairo-pattern-get-reference-count" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-reference-count">
193
+ <ANCHOR id="cairo-pattern-set-user-data" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-user-data">
194
+ <ANCHOR id="cairo-pattern-get-user-data" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-user-data">
195
+ <ANCHOR id="cairo-cairo-pattern-t.see-also" href="cairo/cairo-cairo-pattern-t.html#cairo-cairo-pattern-t.see-also">
196
+ <ANCHOR id="cairo-Regions" href="cairo/cairo-Regions.html">
197
+ <ANCHOR id="cairo-Regions.synopsis" href="cairo/cairo-Regions.html#cairo-Regions.synopsis">
198
+ <ANCHOR id="cairo-Regions.description" href="cairo/cairo-Regions.html#cairo-Regions.description">
199
+ <ANCHOR id="cairo-Regions.details" href="cairo/cairo-Regions.html#cairo-Regions.details">
200
+ <ANCHOR id="cairo-region-t" href="cairo/cairo-Regions.html#cairo-region-t">
201
+ <ANCHOR id="cairo-region-create" href="cairo/cairo-Regions.html#cairo-region-create">
202
+ <ANCHOR id="cairo-region-create-rectangle" href="cairo/cairo-Regions.html#cairo-region-create-rectangle">
203
+ <ANCHOR id="cairo-region-create-rectangles" href="cairo/cairo-Regions.html#cairo-region-create-rectangles">
204
+ <ANCHOR id="cairo-region-copy" href="cairo/cairo-Regions.html#cairo-region-copy">
205
+ <ANCHOR id="cairo-region-reference" href="cairo/cairo-Regions.html#cairo-region-reference">
206
+ <ANCHOR id="cairo-region-destroy" href="cairo/cairo-Regions.html#cairo-region-destroy">
207
+ <ANCHOR id="cairo-region-status" href="cairo/cairo-Regions.html#cairo-region-status">
208
+ <ANCHOR id="cairo-region-get-extents" href="cairo/cairo-Regions.html#cairo-region-get-extents">
209
+ <ANCHOR id="cairo-region-num-rectangles" href="cairo/cairo-Regions.html#cairo-region-num-rectangles">
210
+ <ANCHOR id="cairo-region-get-rectangle" href="cairo/cairo-Regions.html#cairo-region-get-rectangle">
211
+ <ANCHOR id="cairo-region-is-empty" href="cairo/cairo-Regions.html#cairo-region-is-empty">
212
+ <ANCHOR id="cairo-region-contains-point" href="cairo/cairo-Regions.html#cairo-region-contains-point">
213
+ <ANCHOR id="cairo-region-overlap-t" href="cairo/cairo-Regions.html#cairo-region-overlap-t">
214
+ <ANCHOR id="CAIRO-REGION-OVERLAP-IN:CAPS" href="cairo/cairo-Regions.html#CAIRO-REGION-OVERLAP-IN:CAPS">
215
+ <ANCHOR id="CAIRO-REGION-OVERLAP-OUT:CAPS" href="cairo/cairo-Regions.html#CAIRO-REGION-OVERLAP-OUT:CAPS">
216
+ <ANCHOR id="CAIRO-REGION-OVERLAP-PART:CAPS" href="cairo/cairo-Regions.html#CAIRO-REGION-OVERLAP-PART:CAPS">
217
+ <ANCHOR id="cairo-region-contains-rectangle" href="cairo/cairo-Regions.html#cairo-region-contains-rectangle">
218
+ <ANCHOR id="cairo-region-equal" href="cairo/cairo-Regions.html#cairo-region-equal">
219
+ <ANCHOR id="cairo-region-translate" href="cairo/cairo-Regions.html#cairo-region-translate">
220
+ <ANCHOR id="cairo-region-intersect" href="cairo/cairo-Regions.html#cairo-region-intersect">
221
+ <ANCHOR id="cairo-region-intersect-rectangle" href="cairo/cairo-Regions.html#cairo-region-intersect-rectangle">
222
+ <ANCHOR id="cairo-region-subtract" href="cairo/cairo-Regions.html#cairo-region-subtract">
223
+ <ANCHOR id="cairo-region-subtract-rectangle" href="cairo/cairo-Regions.html#cairo-region-subtract-rectangle">
224
+ <ANCHOR id="cairo-region-union" href="cairo/cairo-Regions.html#cairo-region-union">
225
+ <ANCHOR id="cairo-region-union-rectangle" href="cairo/cairo-Regions.html#cairo-region-union-rectangle">
226
+ <ANCHOR id="cairo-region-xor" href="cairo/cairo-Regions.html#cairo-region-xor">
227
+ <ANCHOR id="cairo-region-xor-rectangle" href="cairo/cairo-Regions.html#cairo-region-xor-rectangle">
228
+ <ANCHOR id="cairo-Transformations" href="cairo/cairo-Transformations.html">
229
+ <ANCHOR id="cairo-Transformations.synopsis" href="cairo/cairo-Transformations.html#cairo-Transformations.synopsis">
230
+ <ANCHOR id="cairo-Transformations.description" href="cairo/cairo-Transformations.html#cairo-Transformations.description">
231
+ <ANCHOR id="cairo-Transformations.details" href="cairo/cairo-Transformations.html#cairo-Transformations.details">
232
+ <ANCHOR id="cairo-translate" href="cairo/cairo-Transformations.html#cairo-translate">
233
+ <ANCHOR id="cairo-scale" href="cairo/cairo-Transformations.html#cairo-scale">
234
+ <ANCHOR id="cairo-rotate" href="cairo/cairo-Transformations.html#cairo-rotate">
235
+ <ANCHOR id="cairo-transform" href="cairo/cairo-Transformations.html#cairo-transform">
236
+ <ANCHOR id="cairo-set-matrix" href="cairo/cairo-Transformations.html#cairo-set-matrix">
237
+ <ANCHOR id="cairo-get-matrix" href="cairo/cairo-Transformations.html#cairo-get-matrix">
238
+ <ANCHOR id="cairo-identity-matrix" href="cairo/cairo-Transformations.html#cairo-identity-matrix">
239
+ <ANCHOR id="cairo-user-to-device" href="cairo/cairo-Transformations.html#cairo-user-to-device">
240
+ <ANCHOR id="cairo-user-to-device-distance" href="cairo/cairo-Transformations.html#cairo-user-to-device-distance">
241
+ <ANCHOR id="cairo-device-to-user" href="cairo/cairo-Transformations.html#cairo-device-to-user">
242
+ <ANCHOR id="cairo-device-to-user-distance" href="cairo/cairo-Transformations.html#cairo-device-to-user-distance">
243
+ <ANCHOR id="cairo-Transformations.see-also" href="cairo/cairo-Transformations.html#cairo-Transformations.see-also">
152
244
  <ANCHOR id="cairo-text" href="cairo/cairo-text.html">
153
245
  <ANCHOR id="cairo-text.synopsis" href="cairo/cairo-text.html#cairo-text.synopsis">
154
246
  <ANCHOR id="cairo-text.description" href="cairo/cairo-text.html#cairo-text.description">
155
247
  <ANCHOR id="cairo-text.details" href="cairo/cairo-text.html#cairo-text.details">
156
248
  <ANCHOR id="cairo-glyph-t" href="cairo/cairo-text.html#cairo-glyph-t">
157
249
  <ANCHOR id="cairo-font-slant-t" href="cairo/cairo-text.html#cairo-font-slant-t">
250
+ <ANCHOR id="CAIRO-FONT-SLANT-NORMAL:CAPS" href="cairo/cairo-text.html#CAIRO-FONT-SLANT-NORMAL:CAPS">
251
+ <ANCHOR id="CAIRO-FONT-SLANT-ITALIC:CAPS" href="cairo/cairo-text.html#CAIRO-FONT-SLANT-ITALIC:CAPS">
252
+ <ANCHOR id="CAIRO-FONT-SLANT-OBLIQUE:CAPS" href="cairo/cairo-text.html#CAIRO-FONT-SLANT-OBLIQUE:CAPS">
158
253
  <ANCHOR id="cairo-font-weight-t" href="cairo/cairo-text.html#cairo-font-weight-t">
254
+ <ANCHOR id="CAIRO-FONT-WEIGHT-NORMAL:CAPS" href="cairo/cairo-text.html#CAIRO-FONT-WEIGHT-NORMAL:CAPS">
255
+ <ANCHOR id="CAIRO-FONT-WEIGHT-BOLD:CAPS" href="cairo/cairo-text.html#CAIRO-FONT-WEIGHT-BOLD:CAPS">
159
256
  <ANCHOR id="cairo-text-cluster-t" href="cairo/cairo-text.html#cairo-text-cluster-t">
160
257
  <ANCHOR id="cairo-text-cluster-flags-t" href="cairo/cairo-text.html#cairo-text-cluster-flags-t">
258
+ <ANCHOR id="CAIRO-TEXT-CLUSTER-FLAG-BACKWARD:CAPS" href="cairo/cairo-text.html#CAIRO-TEXT-CLUSTER-FLAG-BACKWARD:CAPS">
161
259
  <ANCHOR id="cairo-select-font-face" href="cairo/cairo-text.html#cairo-select-font-face">
162
260
  <ANCHOR id="cairo-set-font-size" href="cairo/cairo-text.html#cairo-set-font-size">
163
261
  <ANCHOR id="cairo-set-font-matrix" href="cairo/cairo-text.html#cairo-set-font-matrix">
@@ -183,296 +281,428 @@
183
281
  <ANCHOR id="cairo-text-cluster-allocate" href="cairo/cairo-text.html#cairo-text-cluster-allocate">
184
282
  <ANCHOR id="cairo-text-cluster-free" href="cairo/cairo-text.html#cairo-text-cluster-free">
185
283
  <ANCHOR id="cairo-text.see-also" href="cairo/cairo-text.html#cairo-text.see-also">
186
- <ANCHOR id="cairo-font-face" href="cairo/cairo-font-face.html">
187
- <ANCHOR id="cairo-font-face.synopsis" href="cairo/cairo-font-face.html#cairo-font-face.synopsis">
188
- <ANCHOR id="cairo-font-face.description" href="cairo/cairo-font-face.html#cairo-font-face.description">
189
- <ANCHOR id="cairo-font-face.details" href="cairo/cairo-font-face.html#cairo-font-face.details">
190
- <ANCHOR id="cairo-font-face-t" href="cairo/cairo-font-face.html#cairo-font-face-t">
191
- <ANCHOR id="cairo-font-face-reference" href="cairo/cairo-font-face.html#cairo-font-face-reference">
192
- <ANCHOR id="cairo-font-face-destroy" href="cairo/cairo-font-face.html#cairo-font-face-destroy">
193
- <ANCHOR id="cairo-font-face-status" href="cairo/cairo-font-face.html#cairo-font-face-status">
194
- <ANCHOR id="cairo-font-type-t" href="cairo/cairo-font-face.html#cairo-font-type-t">
195
- <ANCHOR id="cairo-font-face-get-type" href="cairo/cairo-font-face.html#cairo-font-face-get-type">
196
- <ANCHOR id="cairo-font-face-get-reference-count" href="cairo/cairo-font-face.html#cairo-font-face-get-reference-count">
197
- <ANCHOR id="cairo-font-face-set-user-data" href="cairo/cairo-font-face.html#cairo-font-face-set-user-data">
198
- <ANCHOR id="cairo-font-face-get-user-data" href="cairo/cairo-font-face.html#cairo-font-face-get-user-data">
199
- <ANCHOR id="cairo-font-face.see-also" href="cairo/cairo-font-face.html#cairo-font-face.see-also">
200
- <ANCHOR id="cairo-scaled-font" href="cairo/cairo-scaled-font.html">
201
- <ANCHOR id="cairo-scaled-font.synopsis" href="cairo/cairo-scaled-font.html#cairo-scaled-font.synopsis">
202
- <ANCHOR id="cairo-scaled-font.description" href="cairo/cairo-scaled-font.html#cairo-scaled-font.description">
203
- <ANCHOR id="cairo-scaled-font.details" href="cairo/cairo-scaled-font.html#cairo-scaled-font.details">
204
- <ANCHOR id="cairo-scaled-font-t" href="cairo/cairo-scaled-font.html#cairo-scaled-font-t">
205
- <ANCHOR id="cairo-scaled-font-create" href="cairo/cairo-scaled-font.html#cairo-scaled-font-create">
206
- <ANCHOR id="cairo-scaled-font-reference" href="cairo/cairo-scaled-font.html#cairo-scaled-font-reference">
207
- <ANCHOR id="cairo-scaled-font-destroy" href="cairo/cairo-scaled-font.html#cairo-scaled-font-destroy">
208
- <ANCHOR id="cairo-scaled-font-status" href="cairo/cairo-scaled-font.html#cairo-scaled-font-status">
209
- <ANCHOR id="cairo-font-extents-t" href="cairo/cairo-scaled-font.html#cairo-font-extents-t">
210
- <ANCHOR id="cairo-scaled-font-extents" href="cairo/cairo-scaled-font.html#cairo-scaled-font-extents">
211
- <ANCHOR id="cairo-text-extents-t" href="cairo/cairo-scaled-font.html#cairo-text-extents-t">
212
- <ANCHOR id="cairo-scaled-font-text-extents" href="cairo/cairo-scaled-font.html#cairo-scaled-font-text-extents">
213
- <ANCHOR id="cairo-scaled-font-glyph-extents" href="cairo/cairo-scaled-font.html#cairo-scaled-font-glyph-extents">
214
- <ANCHOR id="cairo-scaled-font-text-to-glyphs" href="cairo/cairo-scaled-font.html#cairo-scaled-font-text-to-glyphs">
215
- <ANCHOR id="cairo-scaled-font-get-font-face" href="cairo/cairo-scaled-font.html#cairo-scaled-font-get-font-face">
216
- <ANCHOR id="cairo-scaled-font-get-font-options" href="cairo/cairo-scaled-font.html#cairo-scaled-font-get-font-options">
217
- <ANCHOR id="cairo-scaled-font-get-font-matrix" href="cairo/cairo-scaled-font.html#cairo-scaled-font-get-font-matrix">
218
- <ANCHOR id="cairo-scaled-font-get-ctm" href="cairo/cairo-scaled-font.html#cairo-scaled-font-get-ctm">
219
- <ANCHOR id="cairo-scaled-font-get-scale-matrix" href="cairo/cairo-scaled-font.html#cairo-scaled-font-get-scale-matrix">
220
- <ANCHOR id="cairo-scaled-font-get-type" href="cairo/cairo-scaled-font.html#cairo-scaled-font-get-type">
221
- <ANCHOR id="cairo-scaled-font-get-reference-count" href="cairo/cairo-scaled-font.html#cairo-scaled-font-get-reference-count">
222
- <ANCHOR id="cairo-scaled-font-set-user-data" href="cairo/cairo-scaled-font.html#cairo-scaled-font-set-user-data">
223
- <ANCHOR id="cairo-scaled-font-get-user-data" href="cairo/cairo-scaled-font.html#cairo-scaled-font-get-user-data">
224
- <ANCHOR id="cairo-scaled-font.see-also" href="cairo/cairo-scaled-font.html#cairo-scaled-font.see-also">
225
- <ANCHOR id="cairo-font-options" href="cairo/cairo-font-options.html">
226
- <ANCHOR id="cairo-font-options.synopsis" href="cairo/cairo-font-options.html#cairo-font-options.synopsis">
227
- <ANCHOR id="cairo-font-options.description" href="cairo/cairo-font-options.html#cairo-font-options.description">
228
- <ANCHOR id="cairo-font-options.details" href="cairo/cairo-font-options.html#cairo-font-options.details">
229
- <ANCHOR id="cairo-font-options-t" href="cairo/cairo-font-options.html#cairo-font-options-t">
230
- <ANCHOR id="cairo-font-options-create" href="cairo/cairo-font-options.html#cairo-font-options-create">
231
- <ANCHOR id="cairo-font-options-copy" href="cairo/cairo-font-options.html#cairo-font-options-copy">
232
- <ANCHOR id="cairo-font-options-destroy" href="cairo/cairo-font-options.html#cairo-font-options-destroy">
233
- <ANCHOR id="cairo-font-options-status" href="cairo/cairo-font-options.html#cairo-font-options-status">
234
- <ANCHOR id="cairo-font-options-merge" href="cairo/cairo-font-options.html#cairo-font-options-merge">
235
- <ANCHOR id="cairo-font-options-hash" href="cairo/cairo-font-options.html#cairo-font-options-hash">
236
- <ANCHOR id="cairo-font-options-equal" href="cairo/cairo-font-options.html#cairo-font-options-equal">
237
- <ANCHOR id="cairo-font-options-set-antialias" href="cairo/cairo-font-options.html#cairo-font-options-set-antialias">
238
- <ANCHOR id="cairo-font-options-get-antialias" href="cairo/cairo-font-options.html#cairo-font-options-get-antialias">
239
- <ANCHOR id="cairo-subpixel-order-t" href="cairo/cairo-font-options.html#cairo-subpixel-order-t">
240
- <ANCHOR id="cairo-font-options-set-subpixel-order" href="cairo/cairo-font-options.html#cairo-font-options-set-subpixel-order">
241
- <ANCHOR id="cairo-font-options-get-subpixel-order" href="cairo/cairo-font-options.html#cairo-font-options-get-subpixel-order">
242
- <ANCHOR id="cairo-hint-style-t" href="cairo/cairo-font-options.html#cairo-hint-style-t">
243
- <ANCHOR id="cairo-font-options-set-hint-style" href="cairo/cairo-font-options.html#cairo-font-options-set-hint-style">
244
- <ANCHOR id="cairo-font-options-get-hint-style" href="cairo/cairo-font-options.html#cairo-font-options-get-hint-style">
245
- <ANCHOR id="cairo-hint-metrics-t" href="cairo/cairo-font-options.html#cairo-hint-metrics-t">
246
- <ANCHOR id="cairo-font-options-set-hint-metrics" href="cairo/cairo-font-options.html#cairo-font-options-set-hint-metrics">
247
- <ANCHOR id="cairo-font-options-get-hint-metrics" href="cairo/cairo-font-options.html#cairo-font-options-get-hint-metrics">
248
- <ANCHOR id="cairo-font-options.see-also" href="cairo/cairo-font-options.html#cairo-font-options.see-also">
249
- <ANCHOR id="cairo-ft-font" href="cairo/cairo-ft-font.html">
250
- <ANCHOR id="cairo-ft-font.synopsis" href="cairo/cairo-ft-font.html#cairo-ft-font.synopsis">
251
- <ANCHOR id="cairo-ft-font.description" href="cairo/cairo-ft-font.html#cairo-ft-font.description">
252
- <ANCHOR id="cairo-ft-font.details" href="cairo/cairo-ft-font.html#cairo-ft-font.details">
253
- <ANCHOR id="CAIRO-HAS-FT-FONT--CAPS" href="cairo/cairo-ft-font.html#CAIRO-HAS-FT-FONT--CAPS">
254
- <ANCHOR id="cairo-ft-font-face-create-for-ft-face" href="cairo/cairo-ft-font.html#cairo-ft-font-face-create-for-ft-face">
255
- <ANCHOR id="cairo-ft-font-face-create-for-pattern" href="cairo/cairo-ft-font.html#cairo-ft-font-face-create-for-pattern">
256
- <ANCHOR id="cairo-ft-font-options-substitute" href="cairo/cairo-ft-font.html#cairo-ft-font-options-substitute">
257
- <ANCHOR id="cairo-ft-scaled-font-lock-face" href="cairo/cairo-ft-font.html#cairo-ft-scaled-font-lock-face">
258
- <ANCHOR id="cairo-ft-scaled-font-unlock-face" href="cairo/cairo-ft-font.html#cairo-ft-scaled-font-unlock-face">
259
- <ANCHOR id="cairo-ft-font.see-also" href="cairo/cairo-ft-font.html#cairo-ft-font.see-also">
260
- <ANCHOR id="cairo-win32-font" href="cairo/cairo-win32-font.html">
261
- <ANCHOR id="cairo-win32-font.synopsis" href="cairo/cairo-win32-font.html#cairo-win32-font.synopsis">
262
- <ANCHOR id="cairo-win32-font.description" href="cairo/cairo-win32-font.html#cairo-win32-font.description">
263
- <ANCHOR id="cairo-win32-font.details" href="cairo/cairo-win32-font.html#cairo-win32-font.details">
264
- <ANCHOR id="CAIRO-HAS-WIN32-FONT--CAPS" href="cairo/cairo-win32-font.html#CAIRO-HAS-WIN32-FONT--CAPS">
265
- <ANCHOR id="cairo-win32-font-face-create-for-logfontw" href="cairo/cairo-win32-font.html#cairo-win32-font-face-create-for-logfontw">
266
- <ANCHOR id="cairo-win32-font-face-create-for-hfont" href="cairo/cairo-win32-font.html#cairo-win32-font-face-create-for-hfont">
267
- <ANCHOR id="cairo-win32-font-face-create-for-logfontw-hfont" href="cairo/cairo-win32-font.html#cairo-win32-font-face-create-for-logfontw-hfont">
268
- <ANCHOR id="cairo-win32-scaled-font-select-font" href="cairo/cairo-win32-font.html#cairo-win32-scaled-font-select-font">
269
- <ANCHOR id="cairo-win32-scaled-font-done-font" href="cairo/cairo-win32-font.html#cairo-win32-scaled-font-done-font">
270
- <ANCHOR id="cairo-win32-scaled-font-get-metrics-factor" href="cairo/cairo-win32-font.html#cairo-win32-scaled-font-get-metrics-factor">
271
- <ANCHOR id="cairo-win32-scaled-font-get-logical-to-device" href="cairo/cairo-win32-font.html#cairo-win32-scaled-font-get-logical-to-device">
272
- <ANCHOR id="cairo-win32-scaled-font-get-device-to-logical" href="cairo/cairo-win32-font.html#cairo-win32-scaled-font-get-device-to-logical">
273
- <ANCHOR id="cairo-win32-font.see-also" href="cairo/cairo-win32-font.html#cairo-win32-font.see-also">
274
- <ANCHOR id="cairo-quartz-font" href="cairo/cairo-quartz-font.html">
275
- <ANCHOR id="cairo-quartz-font.synopsis" href="cairo/cairo-quartz-font.html#cairo-quartz-font.synopsis">
276
- <ANCHOR id="cairo-quartz-font.description" href="cairo/cairo-quartz-font.html#cairo-quartz-font.description">
277
- <ANCHOR id="cairo-quartz-font.details" href="cairo/cairo-quartz-font.html#cairo-quartz-font.details">
278
- <ANCHOR id="CAIRO-HAS-QUARTZ-FONT--CAPS" href="cairo/cairo-quartz-font.html#CAIRO-HAS-QUARTZ-FONT--CAPS">
279
- <ANCHOR id="cairo-quartz-font-face-create-for-cgfont" href="cairo/cairo-quartz-font.html#cairo-quartz-font-face-create-for-cgfont">
280
- <ANCHOR id="cairo-quartz-font-face-create-for-atsu-font-id" href="cairo/cairo-quartz-font.html#cairo-quartz-font-face-create-for-atsu-font-id">
281
- <ANCHOR id="cairo-quartz-font.see-also" href="cairo/cairo-quartz-font.html#cairo-quartz-font.see-also">
282
- <ANCHOR id="cairo-user-font" href="cairo/cairo-user-font.html">
283
- <ANCHOR id="cairo-user-font.synopsis" href="cairo/cairo-user-font.html#cairo-user-font.synopsis">
284
- <ANCHOR id="cairo-user-font.description" href="cairo/cairo-user-font.html#cairo-user-font.description">
285
- <ANCHOR id="cairo-user-font.details" href="cairo/cairo-user-font.html#cairo-user-font.details">
286
- <ANCHOR id="CAIRO-HAS-USER-FONT--CAPS" href="cairo/cairo-user-font.html#CAIRO-HAS-USER-FONT--CAPS">
287
- <ANCHOR id="cairo-user-scaled-font-init-func-t" href="cairo/cairo-user-font.html#cairo-user-scaled-font-init-func-t">
288
- <ANCHOR id="cairo-user-scaled-font-render-glyph-func-t" href="cairo/cairo-user-font.html#cairo-user-scaled-font-render-glyph-func-t">
289
- <ANCHOR id="cairo-user-scaled-font-text-to-glyphs-func-t" href="cairo/cairo-user-font.html#cairo-user-scaled-font-text-to-glyphs-func-t">
290
- <ANCHOR id="cairo-user-scaled-font-unicode-to-glyph-func-t" href="cairo/cairo-user-font.html#cairo-user-scaled-font-unicode-to-glyph-func-t">
291
- <ANCHOR id="cairo-user-font-face-create" href="cairo/cairo-user-font.html#cairo-user-font-face-create">
292
- <ANCHOR id="cairo-user-font-face-set-init-func" href="cairo/cairo-user-font.html#cairo-user-font-face-set-init-func">
293
- <ANCHOR id="cairo-user-font-face-get-init-func" href="cairo/cairo-user-font.html#cairo-user-font-face-get-init-func">
294
- <ANCHOR id="cairo-user-font-face-set-render-glyph-func" href="cairo/cairo-user-font.html#cairo-user-font-face-set-render-glyph-func">
295
- <ANCHOR id="cairo-user-font-face-get-render-glyph-func" href="cairo/cairo-user-font.html#cairo-user-font-face-get-render-glyph-func">
296
- <ANCHOR id="cairo-user-font-face-set-unicode-to-glyph-func" href="cairo/cairo-user-font.html#cairo-user-font-face-set-unicode-to-glyph-func">
297
- <ANCHOR id="cairo-user-font-face-get-unicode-to-glyph-func" href="cairo/cairo-user-font.html#cairo-user-font-face-get-unicode-to-glyph-func">
298
- <ANCHOR id="cairo-user-font-face-set-text-to-glyphs-func" href="cairo/cairo-user-font.html#cairo-user-font-face-set-text-to-glyphs-func">
299
- <ANCHOR id="cairo-user-font-face-get-text-to-glyphs-func" href="cairo/cairo-user-font.html#cairo-user-font-face-get-text-to-glyphs-func">
300
- <ANCHOR id="cairo-surface" href="cairo/cairo-surface.html">
301
- <ANCHOR id="cairo-surface.synopsis" href="cairo/cairo-surface.html#cairo-surface.synopsis">
302
- <ANCHOR id="cairo-surface.description" href="cairo/cairo-surface.html#cairo-surface.description">
303
- <ANCHOR id="cairo-surface.details" href="cairo/cairo-surface.html#cairo-surface.details">
304
- <ANCHOR id="cairo-surface-t" href="cairo/cairo-surface.html#cairo-surface-t">
305
- <ANCHOR id="cairo-content-t" href="cairo/cairo-surface.html#cairo-content-t">
306
- <ANCHOR id="cairo-surface-create-similar" href="cairo/cairo-surface.html#cairo-surface-create-similar">
307
- <ANCHOR id="cairo-surface-reference" href="cairo/cairo-surface.html#cairo-surface-reference">
308
- <ANCHOR id="cairo-surface-destroy" href="cairo/cairo-surface.html#cairo-surface-destroy">
309
- <ANCHOR id="cairo-surface-status" href="cairo/cairo-surface.html#cairo-surface-status">
310
- <ANCHOR id="cairo-surface-finish" href="cairo/cairo-surface.html#cairo-surface-finish">
311
- <ANCHOR id="cairo-surface-flush" href="cairo/cairo-surface.html#cairo-surface-flush">
312
- <ANCHOR id="cairo-surface-get-font-options" href="cairo/cairo-surface.html#cairo-surface-get-font-options">
313
- <ANCHOR id="cairo-surface-get-content" href="cairo/cairo-surface.html#cairo-surface-get-content">
314
- <ANCHOR id="cairo-surface-mark-dirty" href="cairo/cairo-surface.html#cairo-surface-mark-dirty">
315
- <ANCHOR id="cairo-surface-mark-dirty-rectangle" href="cairo/cairo-surface.html#cairo-surface-mark-dirty-rectangle">
316
- <ANCHOR id="cairo-surface-set-device-offset" href="cairo/cairo-surface.html#cairo-surface-set-device-offset">
317
- <ANCHOR id="cairo-surface-get-device-offset" href="cairo/cairo-surface.html#cairo-surface-get-device-offset">
318
- <ANCHOR id="cairo-surface-set-fallback-resolution" href="cairo/cairo-surface.html#cairo-surface-set-fallback-resolution">
319
- <ANCHOR id="cairo-surface-get-fallback-resolution" href="cairo/cairo-surface.html#cairo-surface-get-fallback-resolution">
320
- <ANCHOR id="cairo-surface-type-t" href="cairo/cairo-surface.html#cairo-surface-type-t">
321
- <ANCHOR id="cairo-surface-get-type" href="cairo/cairo-surface.html#cairo-surface-get-type">
322
- <ANCHOR id="cairo-surface-get-reference-count" href="cairo/cairo-surface.html#cairo-surface-get-reference-count">
323
- <ANCHOR id="cairo-surface-set-user-data" href="cairo/cairo-surface.html#cairo-surface-set-user-data">
324
- <ANCHOR id="cairo-surface-get-user-data" href="cairo/cairo-surface.html#cairo-surface-get-user-data">
325
- <ANCHOR id="cairo-surface-copy-page" href="cairo/cairo-surface.html#cairo-surface-copy-page">
326
- <ANCHOR id="cairo-surface-show-page" href="cairo/cairo-surface.html#cairo-surface-show-page">
327
- <ANCHOR id="cairo-surface-has-show-text-glyphs" href="cairo/cairo-surface.html#cairo-surface-has-show-text-glyphs">
328
- <ANCHOR id="cairo-surface.see-also" href="cairo/cairo-surface.html#cairo-surface.see-also">
329
- <ANCHOR id="cairo-image-surface" href="cairo/cairo-image-surface.html">
330
- <ANCHOR id="cairo-image-surface.synopsis" href="cairo/cairo-image-surface.html#cairo-image-surface.synopsis">
331
- <ANCHOR id="cairo-image-surface.description" href="cairo/cairo-image-surface.html#cairo-image-surface.description">
332
- <ANCHOR id="cairo-image-surface.details" href="cairo/cairo-image-surface.html#cairo-image-surface.details">
333
- <ANCHOR id="CAIRO-HAS-IMAGE-SURFACE--CAPS" href="cairo/cairo-image-surface.html#CAIRO-HAS-IMAGE-SURFACE--CAPS">
334
- <ANCHOR id="cairo-format-t" href="cairo/cairo-image-surface.html#cairo-format-t">
335
- <ANCHOR id="cairo-format-stride-for-width" href="cairo/cairo-image-surface.html#cairo-format-stride-for-width">
336
- <ANCHOR id="cairo-image-surface-create" href="cairo/cairo-image-surface.html#cairo-image-surface-create">
337
- <ANCHOR id="cairo-image-surface-create-for-data" href="cairo/cairo-image-surface.html#cairo-image-surface-create-for-data">
338
- <ANCHOR id="cairo-image-surface-get-data" href="cairo/cairo-image-surface.html#cairo-image-surface-get-data">
339
- <ANCHOR id="cairo-image-surface-get-format" href="cairo/cairo-image-surface.html#cairo-image-surface-get-format">
340
- <ANCHOR id="cairo-image-surface-get-width" href="cairo/cairo-image-surface.html#cairo-image-surface-get-width">
341
- <ANCHOR id="cairo-image-surface-get-height" href="cairo/cairo-image-surface.html#cairo-image-surface-get-height">
342
- <ANCHOR id="cairo-image-surface-get-stride" href="cairo/cairo-image-surface.html#cairo-image-surface-get-stride">
343
- <ANCHOR id="cairo-image-surface.see-also" href="cairo/cairo-image-surface.html#cairo-image-surface.see-also">
344
- <ANCHOR id="cairo-pdf-surface" href="cairo/cairo-pdf-surface.html">
345
- <ANCHOR id="cairo-pdf-surface.synopsis" href="cairo/cairo-pdf-surface.html#cairo-pdf-surface.synopsis">
346
- <ANCHOR id="cairo-pdf-surface.description" href="cairo/cairo-pdf-surface.html#cairo-pdf-surface.description">
347
- <ANCHOR id="cairo-pdf-surface.details" href="cairo/cairo-pdf-surface.html#cairo-pdf-surface.details">
348
- <ANCHOR id="CAIRO-HAS-PDF-SURFACE--CAPS" href="cairo/cairo-pdf-surface.html#CAIRO-HAS-PDF-SURFACE--CAPS">
349
- <ANCHOR id="cairo-pdf-surface-create" href="cairo/cairo-pdf-surface.html#cairo-pdf-surface-create">
350
- <ANCHOR id="cairo-pdf-surface-create-for-stream" href="cairo/cairo-pdf-surface.html#cairo-pdf-surface-create-for-stream">
351
- <ANCHOR id="cairo-pdf-surface-set-size" href="cairo/cairo-pdf-surface.html#cairo-pdf-surface-set-size">
352
- <ANCHOR id="cairo-pdf-surface.see-also" href="cairo/cairo-pdf-surface.html#cairo-pdf-surface.see-also">
353
- <ANCHOR id="cairo-png-functions" href="cairo/cairo-png-functions.html">
354
- <ANCHOR id="cairo-png-functions.synopsis" href="cairo/cairo-png-functions.html#cairo-png-functions.synopsis">
355
- <ANCHOR id="cairo-png-functions.description" href="cairo/cairo-png-functions.html#cairo-png-functions.description">
356
- <ANCHOR id="cairo-png-functions.details" href="cairo/cairo-png-functions.html#cairo-png-functions.details">
357
- <ANCHOR id="CAIRO-HAS-PNG-FUNCTIONS--CAPS" href="cairo/cairo-png-functions.html#CAIRO-HAS-PNG-FUNCTIONS--CAPS">
358
- <ANCHOR id="cairo-image-surface-create-from-png" href="cairo/cairo-png-functions.html#cairo-image-surface-create-from-png">
359
- <ANCHOR id="cairo-read-func-t" href="cairo/cairo-png-functions.html#cairo-read-func-t">
360
- <ANCHOR id="cairo-image-surface-create-from-png-stream" href="cairo/cairo-png-functions.html#cairo-image-surface-create-from-png-stream">
361
- <ANCHOR id="cairo-surface-write-to-png" href="cairo/cairo-png-functions.html#cairo-surface-write-to-png">
362
- <ANCHOR id="cairo-write-func-t" href="cairo/cairo-png-functions.html#cairo-write-func-t">
363
- <ANCHOR id="cairo-surface-write-to-png-stream" href="cairo/cairo-png-functions.html#cairo-surface-write-to-png-stream">
364
- <ANCHOR id="cairo-png-functions.see-also" href="cairo/cairo-png-functions.html#cairo-png-functions.see-also">
365
- <ANCHOR id="cairo-ps-surface" href="cairo/cairo-ps-surface.html">
366
- <ANCHOR id="cairo-ps-surface.synopsis" href="cairo/cairo-ps-surface.html#cairo-ps-surface.synopsis">
367
- <ANCHOR id="cairo-ps-surface.description" href="cairo/cairo-ps-surface.html#cairo-ps-surface.description">
368
- <ANCHOR id="cairo-ps-surface.details" href="cairo/cairo-ps-surface.html#cairo-ps-surface.details">
369
- <ANCHOR id="CAIRO-HAS-PS-SURFACE--CAPS" href="cairo/cairo-ps-surface.html#CAIRO-HAS-PS-SURFACE--CAPS">
370
- <ANCHOR id="cairo-ps-surface-create" href="cairo/cairo-ps-surface.html#cairo-ps-surface-create">
371
- <ANCHOR id="cairo-ps-surface-create-for-stream" href="cairo/cairo-ps-surface.html#cairo-ps-surface-create-for-stream">
372
- <ANCHOR id="cairo-ps-surface-restrict-to-level" href="cairo/cairo-ps-surface.html#cairo-ps-surface-restrict-to-level">
373
- <ANCHOR id="cairo-ps-level-t" href="cairo/cairo-ps-surface.html#cairo-ps-level-t">
374
- <ANCHOR id="cairo-ps-get-levels" href="cairo/cairo-ps-surface.html#cairo-ps-get-levels">
375
- <ANCHOR id="cairo-ps-level-to-string" href="cairo/cairo-ps-surface.html#cairo-ps-level-to-string">
376
- <ANCHOR id="cairo-ps-surface-set-eps" href="cairo/cairo-ps-surface.html#cairo-ps-surface-set-eps">
377
- <ANCHOR id="cairo-ps-surface-get-eps" href="cairo/cairo-ps-surface.html#cairo-ps-surface-get-eps">
378
- <ANCHOR id="cairo-ps-surface-set-size" href="cairo/cairo-ps-surface.html#cairo-ps-surface-set-size">
379
- <ANCHOR id="cairo-ps-surface-dsc-begin-setup" href="cairo/cairo-ps-surface.html#cairo-ps-surface-dsc-begin-setup">
380
- <ANCHOR id="cairo-ps-surface-dsc-begin-page-setup" href="cairo/cairo-ps-surface.html#cairo-ps-surface-dsc-begin-page-setup">
381
- <ANCHOR id="cairo-ps-surface-dsc-comment" href="cairo/cairo-ps-surface.html#cairo-ps-surface-dsc-comment">
382
- <ANCHOR id="cairo-ps-surface.see-also" href="cairo/cairo-ps-surface.html#cairo-ps-surface.see-also">
383
- <ANCHOR id="cairo-win32-surface" href="cairo/cairo-win32-surface.html">
384
- <ANCHOR id="cairo-win32-surface.synopsis" href="cairo/cairo-win32-surface.html#cairo-win32-surface.synopsis">
385
- <ANCHOR id="cairo-win32-surface.description" href="cairo/cairo-win32-surface.html#cairo-win32-surface.description">
386
- <ANCHOR id="cairo-win32-surface.details" href="cairo/cairo-win32-surface.html#cairo-win32-surface.details">
387
- <ANCHOR id="CAIRO-HAS-WIN32-SURFACE--CAPS" href="cairo/cairo-win32-surface.html#CAIRO-HAS-WIN32-SURFACE--CAPS">
388
- <ANCHOR id="cairo-win32-surface-create" href="cairo/cairo-win32-surface.html#cairo-win32-surface-create">
389
- <ANCHOR id="cairo-win32-surface-create-with-dib" href="cairo/cairo-win32-surface.html#cairo-win32-surface-create-with-dib">
390
- <ANCHOR id="cairo-win32-surface-create-with-ddb" href="cairo/cairo-win32-surface.html#cairo-win32-surface-create-with-ddb">
391
- <ANCHOR id="cairo-win32-printing-surface-create" href="cairo/cairo-win32-surface.html#cairo-win32-printing-surface-create">
392
- <ANCHOR id="cairo-win32-surface-get-dc" href="cairo/cairo-win32-surface.html#cairo-win32-surface-get-dc">
393
- <ANCHOR id="cairo-win32-surface-get-image" href="cairo/cairo-win32-surface.html#cairo-win32-surface-get-image">
394
- <ANCHOR id="cairo-win32-surface.see-also" href="cairo/cairo-win32-surface.html#cairo-win32-surface.see-also">
395
- <ANCHOR id="cairo-svg-surface" href="cairo/cairo-svg-surface.html">
396
- <ANCHOR id="cairo-svg-surface.synopsis" href="cairo/cairo-svg-surface.html#cairo-svg-surface.synopsis">
397
- <ANCHOR id="cairo-svg-surface.description" href="cairo/cairo-svg-surface.html#cairo-svg-surface.description">
398
- <ANCHOR id="cairo-svg-surface.details" href="cairo/cairo-svg-surface.html#cairo-svg-surface.details">
399
- <ANCHOR id="CAIRO-HAS-SVG-SURFACE--CAPS" href="cairo/cairo-svg-surface.html#CAIRO-HAS-SVG-SURFACE--CAPS">
400
- <ANCHOR id="cairo-svg-surface-create" href="cairo/cairo-svg-surface.html#cairo-svg-surface-create">
401
- <ANCHOR id="cairo-svg-surface-create-for-stream" href="cairo/cairo-svg-surface.html#cairo-svg-surface-create-for-stream">
402
- <ANCHOR id="cairo-svg-surface-restrict-to-version" href="cairo/cairo-svg-surface.html#cairo-svg-surface-restrict-to-version">
403
- <ANCHOR id="cairo-svg-version-t" href="cairo/cairo-svg-surface.html#cairo-svg-version-t">
404
- <ANCHOR id="cairo-svg-get-versions" href="cairo/cairo-svg-surface.html#cairo-svg-get-versions">
405
- <ANCHOR id="cairo-svg-version-to-string" href="cairo/cairo-svg-surface.html#cairo-svg-version-to-string">
406
- <ANCHOR id="cairo-svg-surface.see-also" href="cairo/cairo-svg-surface.html#cairo-svg-surface.see-also">
407
- <ANCHOR id="cairo-quartz-surface" href="cairo/cairo-quartz-surface.html">
408
- <ANCHOR id="cairo-quartz-surface.synopsis" href="cairo/cairo-quartz-surface.html#cairo-quartz-surface.synopsis">
409
- <ANCHOR id="cairo-quartz-surface.description" href="cairo/cairo-quartz-surface.html#cairo-quartz-surface.description">
410
- <ANCHOR id="cairo-quartz-surface.details" href="cairo/cairo-quartz-surface.html#cairo-quartz-surface.details">
411
- <ANCHOR id="CAIRO-HAS-QUARTZ-SURFACE--CAPS" href="cairo/cairo-quartz-surface.html#CAIRO-HAS-QUARTZ-SURFACE--CAPS">
412
- <ANCHOR id="cairo-quartz-surface-create" href="cairo/cairo-quartz-surface.html#cairo-quartz-surface-create">
413
- <ANCHOR id="cairo-quartz-surface-create-for-cg-context" href="cairo/cairo-quartz-surface.html#cairo-quartz-surface-create-for-cg-context">
414
- <ANCHOR id="cairo-quartz-surface-get-cg-context" href="cairo/cairo-quartz-surface.html#cairo-quartz-surface-get-cg-context">
415
- <ANCHOR id="cairo-quartz-surface.see-also" href="cairo/cairo-quartz-surface.html#cairo-quartz-surface.see-also">
416
- <ANCHOR id="cairo-xlib-surface" href="cairo/cairo-xlib-surface.html">
417
- <ANCHOR id="cairo-xlib-surface.synopsis" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface.synopsis">
418
- <ANCHOR id="cairo-xlib-surface.description" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface.description">
419
- <ANCHOR id="cairo-xlib-surface.details" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface.details">
420
- <ANCHOR id="CAIRO-HAS-XLIB-SURFACE--CAPS" href="cairo/cairo-xlib-surface.html#CAIRO-HAS-XLIB-SURFACE--CAPS">
421
- <ANCHOR id="cairo-xlib-surface-create" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface-create">
422
- <ANCHOR id="cairo-xlib-surface-create-for-bitmap" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface-create-for-bitmap">
423
- <ANCHOR id="cairo-xlib-surface-set-size" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface-set-size">
424
- <ANCHOR id="cairo-xlib-surface-get-display" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface-get-display">
425
- <ANCHOR id="cairo-xlib-surface-get-screen" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface-get-screen">
426
- <ANCHOR id="cairo-xlib-surface-set-drawable" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface-set-drawable">
427
- <ANCHOR id="cairo-xlib-surface-get-drawable" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface-get-drawable">
428
- <ANCHOR id="cairo-xlib-surface-get-visual" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface-get-visual">
429
- <ANCHOR id="cairo-xlib-surface-get-width" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface-get-width">
430
- <ANCHOR id="cairo-xlib-surface-get-height" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface-get-height">
431
- <ANCHOR id="cairo-xlib-surface-get-depth" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface-get-depth">
432
- <ANCHOR id="cairo-xlib-surface.see-also" href="cairo/cairo-xlib-surface.html#cairo-xlib-surface.see-also">
433
- <ANCHOR id="cairo-matrix" href="cairo/cairo-matrix.html">
434
- <ANCHOR id="cairo-matrix.synopsis" href="cairo/cairo-matrix.html#cairo-matrix.synopsis">
435
- <ANCHOR id="cairo-matrix.description" href="cairo/cairo-matrix.html#cairo-matrix.description">
436
- <ANCHOR id="cairo-matrix.details" href="cairo/cairo-matrix.html#cairo-matrix.details">
437
- <ANCHOR id="cairo-matrix-t" href="cairo/cairo-matrix.html#cairo-matrix-t">
438
- <ANCHOR id="cairo-matrix-init" href="cairo/cairo-matrix.html#cairo-matrix-init">
439
- <ANCHOR id="cairo-matrix-init-identity" href="cairo/cairo-matrix.html#cairo-matrix-init-identity">
440
- <ANCHOR id="cairo-matrix-init-translate" href="cairo/cairo-matrix.html#cairo-matrix-init-translate">
441
- <ANCHOR id="cairo-matrix-init-scale" href="cairo/cairo-matrix.html#cairo-matrix-init-scale">
442
- <ANCHOR id="cairo-matrix-init-rotate" href="cairo/cairo-matrix.html#cairo-matrix-init-rotate">
443
- <ANCHOR id="cairo-matrix-translate" href="cairo/cairo-matrix.html#cairo-matrix-translate">
444
- <ANCHOR id="cairo-matrix-scale" href="cairo/cairo-matrix.html#cairo-matrix-scale">
445
- <ANCHOR id="cairo-matrix-rotate" href="cairo/cairo-matrix.html#cairo-matrix-rotate">
446
- <ANCHOR id="cairo-matrix-invert" href="cairo/cairo-matrix.html#cairo-matrix-invert">
447
- <ANCHOR id="cairo-matrix-multiply" href="cairo/cairo-matrix.html#cairo-matrix-multiply">
448
- <ANCHOR id="cairo-matrix-transform-distance" href="cairo/cairo-matrix.html#cairo-matrix-transform-distance">
449
- <ANCHOR id="cairo-matrix-transform-point" href="cairo/cairo-matrix.html#cairo-matrix-transform-point">
450
- <ANCHOR id="cairo-matrix.see-also" href="cairo/cairo-matrix.html#cairo-matrix.see-also">
451
- <ANCHOR id="cairo-error-status" href="cairo/cairo-error-status.html">
452
- <ANCHOR id="cairo-error-status.synopsis" href="cairo/cairo-error-status.html#cairo-error-status.synopsis">
453
- <ANCHOR id="cairo-error-status.description" href="cairo/cairo-error-status.html#cairo-error-status.description">
454
- <ANCHOR id="cairo-error-status.details" href="cairo/cairo-error-status.html#cairo-error-status.details">
455
- <ANCHOR id="cairo-status-t" href="cairo/cairo-error-status.html#cairo-status-t">
456
- <ANCHOR id="cairo-status-to-string" href="cairo/cairo-error-status.html#cairo-status-to-string">
457
- <ANCHOR id="cairo-debug-reset-static-data" href="cairo/cairo-error-status.html#cairo-debug-reset-static-data">
458
- <ANCHOR id="cairo-error-status.see-also" href="cairo/cairo-error-status.html#cairo-error-status.see-also">
459
- <ANCHOR id="cairo-version-info" href="cairo/cairo-version-info.html">
460
- <ANCHOR id="cairo-version-info.synopsis" href="cairo/cairo-version-info.html#cairo-version-info.synopsis">
461
- <ANCHOR id="cairo-version-info.description" href="cairo/cairo-version-info.html#cairo-version-info.description">
462
- <ANCHOR id="cairo-version-info.details" href="cairo/cairo-version-info.html#cairo-version-info.details">
463
- <ANCHOR id="CAIRO-VERSION--CAPS" href="cairo/cairo-version-info.html#CAIRO-VERSION--CAPS">
464
- <ANCHOR id="CAIRO-VERSION-MAJOR--CAPS" href="cairo/cairo-version-info.html#CAIRO-VERSION-MAJOR--CAPS">
465
- <ANCHOR id="CAIRO-VERSION-MINOR--CAPS" href="cairo/cairo-version-info.html#CAIRO-VERSION-MINOR--CAPS">
466
- <ANCHOR id="CAIRO-VERSION-MICRO--CAPS" href="cairo/cairo-version-info.html#CAIRO-VERSION-MICRO--CAPS">
467
- <ANCHOR id="CAIRO-VERSION-STRING--CAPS" href="cairo/cairo-version-info.html#CAIRO-VERSION-STRING--CAPS">
468
- <ANCHOR id="CAIRO-VERSION-ENCODE--CAPS" href="cairo/cairo-version-info.html#CAIRO-VERSION-ENCODE--CAPS">
469
- <ANCHOR id="CAIRO-VERSION-STRINGIZE--CAPS" href="cairo/cairo-version-info.html#CAIRO-VERSION-STRINGIZE--CAPS">
470
- <ANCHOR id="cairo-version" href="cairo/cairo-version-info.html#cairo-version">
471
- <ANCHOR id="cairo-version-string" href="cairo/cairo-version-info.html#cairo-version-string">
472
- <ANCHOR id="cairo-types" href="cairo/cairo-types.html">
473
- <ANCHOR id="cairo-types.synopsis" href="cairo/cairo-types.html#cairo-types.synopsis">
474
- <ANCHOR id="cairo-types.description" href="cairo/cairo-types.html#cairo-types.description">
475
- <ANCHOR id="cairo-types.details" href="cairo/cairo-types.html#cairo-types.details">
476
- <ANCHOR id="cairo-bool-t" href="cairo/cairo-types.html#cairo-bool-t">
477
- <ANCHOR id="cairo-user-data-key-t" href="cairo/cairo-types.html#cairo-user-data-key-t">
478
- <ANCHOR id="cairo-destroy-func-t" href="cairo/cairo-types.html#cairo-destroy-func-t">
284
+ <ANCHOR id="cairo-cairo-font-face-t" href="cairo/cairo-cairo-font-face-t.html">
285
+ <ANCHOR id="cairo-cairo-font-face-t.synopsis" href="cairo/cairo-cairo-font-face-t.html#cairo-cairo-font-face-t.synopsis">
286
+ <ANCHOR id="cairo-cairo-font-face-t.description" href="cairo/cairo-cairo-font-face-t.html#cairo-cairo-font-face-t.description">
287
+ <ANCHOR id="cairo-cairo-font-face-t.details" href="cairo/cairo-cairo-font-face-t.html#cairo-cairo-font-face-t.details">
288
+ <ANCHOR id="cairo-font-face-t" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-t">
289
+ <ANCHOR id="cairo-font-face-reference" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-reference">
290
+ <ANCHOR id="cairo-font-face-destroy" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-destroy">
291
+ <ANCHOR id="cairo-font-face-status" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-status">
292
+ <ANCHOR id="cairo-font-type-t" href="cairo/cairo-cairo-font-face-t.html#cairo-font-type-t">
293
+ <ANCHOR id="CAIRO-FONT-TYPE-TOY:CAPS" href="cairo/cairo-cairo-font-face-t.html#CAIRO-FONT-TYPE-TOY:CAPS">
294
+ <ANCHOR id="CAIRO-FONT-TYPE-FT:CAPS" href="cairo/cairo-cairo-font-face-t.html#CAIRO-FONT-TYPE-FT:CAPS">
295
+ <ANCHOR id="CAIRO-FONT-TYPE-WIN32:CAPS" href="cairo/cairo-cairo-font-face-t.html#CAIRO-FONT-TYPE-WIN32:CAPS">
296
+ <ANCHOR id="CAIRO-FONT-TYPE-QUARTZ:CAPS" href="cairo/cairo-cairo-font-face-t.html#CAIRO-FONT-TYPE-QUARTZ:CAPS">
297
+ <ANCHOR id="CAIRO-FONT-TYPE-USER:CAPS" href="cairo/cairo-cairo-font-face-t.html#CAIRO-FONT-TYPE-USER:CAPS">
298
+ <ANCHOR id="cairo-font-face-get-type" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-get-type">
299
+ <ANCHOR id="cairo-font-face-get-reference-count" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-get-reference-count">
300
+ <ANCHOR id="cairo-font-face-set-user-data" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-set-user-data">
301
+ <ANCHOR id="cairo-font-face-get-user-data" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-get-user-data">
302
+ <ANCHOR id="cairo-cairo-font-face-t.see-also" href="cairo/cairo-cairo-font-face-t.html#cairo-cairo-font-face-t.see-also">
303
+ <ANCHOR id="cairo-cairo-scaled-font-t" href="cairo/cairo-cairo-scaled-font-t.html">
304
+ <ANCHOR id="cairo-cairo-scaled-font-t.synopsis" href="cairo/cairo-cairo-scaled-font-t.html#cairo-cairo-scaled-font-t.synopsis">
305
+ <ANCHOR id="cairo-cairo-scaled-font-t.description" href="cairo/cairo-cairo-scaled-font-t.html#cairo-cairo-scaled-font-t.description">
306
+ <ANCHOR id="cairo-cairo-scaled-font-t.details" href="cairo/cairo-cairo-scaled-font-t.html#cairo-cairo-scaled-font-t.details">
307
+ <ANCHOR id="cairo-scaled-font-t" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-t">
308
+ <ANCHOR id="cairo-scaled-font-create" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-create">
309
+ <ANCHOR id="cairo-scaled-font-reference" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-reference">
310
+ <ANCHOR id="cairo-scaled-font-destroy" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-destroy">
311
+ <ANCHOR id="cairo-scaled-font-status" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-status">
312
+ <ANCHOR id="cairo-font-extents-t" href="cairo/cairo-cairo-scaled-font-t.html#cairo-font-extents-t">
313
+ <ANCHOR id="cairo-scaled-font-extents" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-extents">
314
+ <ANCHOR id="cairo-text-extents-t" href="cairo/cairo-cairo-scaled-font-t.html#cairo-text-extents-t">
315
+ <ANCHOR id="cairo-scaled-font-text-extents" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-text-extents">
316
+ <ANCHOR id="cairo-scaled-font-glyph-extents" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-glyph-extents">
317
+ <ANCHOR id="cairo-scaled-font-text-to-glyphs" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-text-to-glyphs">
318
+ <ANCHOR id="cairo-scaled-font-get-font-face" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-font-face">
319
+ <ANCHOR id="cairo-scaled-font-get-font-options" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-font-options">
320
+ <ANCHOR id="cairo-scaled-font-get-font-matrix" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-font-matrix">
321
+ <ANCHOR id="cairo-scaled-font-get-ctm" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-ctm">
322
+ <ANCHOR id="cairo-scaled-font-get-scale-matrix" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-scale-matrix">
323
+ <ANCHOR id="cairo-scaled-font-get-type" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-type">
324
+ <ANCHOR id="cairo-scaled-font-get-reference-count" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-reference-count">
325
+ <ANCHOR id="cairo-scaled-font-set-user-data" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-set-user-data">
326
+ <ANCHOR id="cairo-scaled-font-get-user-data" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-user-data">
327
+ <ANCHOR id="cairo-cairo-scaled-font-t.see-also" href="cairo/cairo-cairo-scaled-font-t.html#cairo-cairo-scaled-font-t.see-also">
328
+ <ANCHOR id="cairo-cairo-font-options-t" href="cairo/cairo-cairo-font-options-t.html">
329
+ <ANCHOR id="cairo-cairo-font-options-t.synopsis" href="cairo/cairo-cairo-font-options-t.html#cairo-cairo-font-options-t.synopsis">
330
+ <ANCHOR id="cairo-cairo-font-options-t.description" href="cairo/cairo-cairo-font-options-t.html#cairo-cairo-font-options-t.description">
331
+ <ANCHOR id="cairo-cairo-font-options-t.details" href="cairo/cairo-cairo-font-options-t.html#cairo-cairo-font-options-t.details">
332
+ <ANCHOR id="cairo-font-options-t" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-t">
333
+ <ANCHOR id="cairo-font-options-create" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-create">
334
+ <ANCHOR id="cairo-font-options-copy" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-copy">
335
+ <ANCHOR id="cairo-font-options-destroy" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-destroy">
336
+ <ANCHOR id="cairo-font-options-status" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-status">
337
+ <ANCHOR id="cairo-font-options-merge" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-merge">
338
+ <ANCHOR id="cairo-font-options-hash" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-hash">
339
+ <ANCHOR id="cairo-font-options-equal" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-equal">
340
+ <ANCHOR id="cairo-font-options-set-antialias" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-set-antialias">
341
+ <ANCHOR id="cairo-font-options-get-antialias" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-get-antialias">
342
+ <ANCHOR id="cairo-subpixel-order-t" href="cairo/cairo-cairo-font-options-t.html#cairo-subpixel-order-t">
343
+ <ANCHOR id="CAIRO-SUBPIXEL-ORDER-DEFAULT:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-SUBPIXEL-ORDER-DEFAULT:CAPS">
344
+ <ANCHOR id="CAIRO-SUBPIXEL-ORDER-RGB:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-SUBPIXEL-ORDER-RGB:CAPS">
345
+ <ANCHOR id="CAIRO-SUBPIXEL-ORDER-BGR:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-SUBPIXEL-ORDER-BGR:CAPS">
346
+ <ANCHOR id="CAIRO-SUBPIXEL-ORDER-VRGB:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-SUBPIXEL-ORDER-VRGB:CAPS">
347
+ <ANCHOR id="CAIRO-SUBPIXEL-ORDER-VBGR:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-SUBPIXEL-ORDER-VBGR:CAPS">
348
+ <ANCHOR id="cairo-font-options-set-subpixel-order" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-set-subpixel-order">
349
+ <ANCHOR id="cairo-font-options-get-subpixel-order" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-get-subpixel-order">
350
+ <ANCHOR id="cairo-hint-style-t" href="cairo/cairo-cairo-font-options-t.html#cairo-hint-style-t">
351
+ <ANCHOR id="CAIRO-HINT-STYLE-DEFAULT:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-STYLE-DEFAULT:CAPS">
352
+ <ANCHOR id="CAIRO-HINT-STYLE-NONE:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-STYLE-NONE:CAPS">
353
+ <ANCHOR id="CAIRO-HINT-STYLE-SLIGHT:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-STYLE-SLIGHT:CAPS">
354
+ <ANCHOR id="CAIRO-HINT-STYLE-MEDIUM:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-STYLE-MEDIUM:CAPS">
355
+ <ANCHOR id="CAIRO-HINT-STYLE-FULL:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-STYLE-FULL:CAPS">
356
+ <ANCHOR id="cairo-font-options-set-hint-style" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-set-hint-style">
357
+ <ANCHOR id="cairo-font-options-get-hint-style" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-get-hint-style">
358
+ <ANCHOR id="cairo-hint-metrics-t" href="cairo/cairo-cairo-font-options-t.html#cairo-hint-metrics-t">
359
+ <ANCHOR id="CAIRO-HINT-METRICS-DEFAULT:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-METRICS-DEFAULT:CAPS">
360
+ <ANCHOR id="CAIRO-HINT-METRICS-OFF:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-METRICS-OFF:CAPS">
361
+ <ANCHOR id="CAIRO-HINT-METRICS-ON:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-METRICS-ON:CAPS">
362
+ <ANCHOR id="cairo-font-options-set-hint-metrics" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-set-hint-metrics">
363
+ <ANCHOR id="cairo-font-options-get-hint-metrics" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-get-hint-metrics">
364
+ <ANCHOR id="cairo-cairo-font-options-t.see-also" href="cairo/cairo-cairo-font-options-t.html#cairo-cairo-font-options-t.see-also">
365
+ <ANCHOR id="cairo-FreeType-Fonts" href="cairo/cairo-FreeType-Fonts.html">
366
+ <ANCHOR id="cairo-FreeType-Fonts.synopsis" href="cairo/cairo-FreeType-Fonts.html#cairo-FreeType-Fonts.synopsis">
367
+ <ANCHOR id="cairo-FreeType-Fonts.description" href="cairo/cairo-FreeType-Fonts.html#cairo-FreeType-Fonts.description">
368
+ <ANCHOR id="cairo-FreeType-Fonts.details" href="cairo/cairo-FreeType-Fonts.html#cairo-FreeType-Fonts.details">
369
+ <ANCHOR id="CAIRO-HAS-FT-FONT:CAPS" href="cairo/cairo-FreeType-Fonts.html#CAIRO-HAS-FT-FONT:CAPS">
370
+ <ANCHOR id="CAIRO-HAS-FC-FONT:CAPS" href="cairo/cairo-FreeType-Fonts.html#CAIRO-HAS-FC-FONT:CAPS">
371
+ <ANCHOR id="cairo-ft-font-face-create-for-ft-face" href="cairo/cairo-FreeType-Fonts.html#cairo-ft-font-face-create-for-ft-face">
372
+ <ANCHOR id="cairo-ft-font-face-create-for-pattern" href="cairo/cairo-FreeType-Fonts.html#cairo-ft-font-face-create-for-pattern">
373
+ <ANCHOR id="cairo-ft-font-options-substitute" href="cairo/cairo-FreeType-Fonts.html#cairo-ft-font-options-substitute">
374
+ <ANCHOR id="cairo-ft-scaled-font-lock-face" href="cairo/cairo-FreeType-Fonts.html#cairo-ft-scaled-font-lock-face">
375
+ <ANCHOR id="cairo-ft-scaled-font-unlock-face" href="cairo/cairo-FreeType-Fonts.html#cairo-ft-scaled-font-unlock-face">
376
+ <ANCHOR id="cairo-FreeType-Fonts.see-also" href="cairo/cairo-FreeType-Fonts.html#cairo-FreeType-Fonts.see-also">
377
+ <ANCHOR id="cairo-Win32-Fonts" href="cairo/cairo-Win32-Fonts.html">
378
+ <ANCHOR id="cairo-Win32-Fonts.synopsis" href="cairo/cairo-Win32-Fonts.html#cairo-Win32-Fonts.synopsis">
379
+ <ANCHOR id="cairo-Win32-Fonts.description" href="cairo/cairo-Win32-Fonts.html#cairo-Win32-Fonts.description">
380
+ <ANCHOR id="cairo-Win32-Fonts.details" href="cairo/cairo-Win32-Fonts.html#cairo-Win32-Fonts.details">
381
+ <ANCHOR id="CAIRO-HAS-WIN32-FONT:CAPS" href="cairo/cairo-Win32-Fonts.html#CAIRO-HAS-WIN32-FONT:CAPS">
382
+ <ANCHOR id="cairo-win32-font-face-create-for-logfontw" href="cairo/cairo-Win32-Fonts.html#cairo-win32-font-face-create-for-logfontw">
383
+ <ANCHOR id="cairo-win32-font-face-create-for-hfont" href="cairo/cairo-Win32-Fonts.html#cairo-win32-font-face-create-for-hfont">
384
+ <ANCHOR id="cairo-win32-font-face-create-for-logfontw-hfont" href="cairo/cairo-Win32-Fonts.html#cairo-win32-font-face-create-for-logfontw-hfont">
385
+ <ANCHOR id="cairo-win32-scaled-font-select-font" href="cairo/cairo-Win32-Fonts.html#cairo-win32-scaled-font-select-font">
386
+ <ANCHOR id="cairo-win32-scaled-font-done-font" href="cairo/cairo-Win32-Fonts.html#cairo-win32-scaled-font-done-font">
387
+ <ANCHOR id="cairo-win32-scaled-font-get-metrics-factor" href="cairo/cairo-Win32-Fonts.html#cairo-win32-scaled-font-get-metrics-factor">
388
+ <ANCHOR id="cairo-win32-scaled-font-get-logical-to-device" href="cairo/cairo-Win32-Fonts.html#cairo-win32-scaled-font-get-logical-to-device">
389
+ <ANCHOR id="cairo-win32-scaled-font-get-device-to-logical" href="cairo/cairo-Win32-Fonts.html#cairo-win32-scaled-font-get-device-to-logical">
390
+ <ANCHOR id="cairo-Win32-Fonts.see-also" href="cairo/cairo-Win32-Fonts.html#cairo-Win32-Fonts.see-also">
391
+ <ANCHOR id="cairo-Quartz-(CGFont)-Fonts" href="cairo/cairo-Quartz-(CGFont)-Fonts.html">
392
+ <ANCHOR id="cairo-Quartz-(CGFont)-Fonts.synopsis" href="cairo/cairo-Quartz-(CGFont)-Fonts.html#cairo-Quartz-(CGFont)-Fonts.synopsis">
393
+ <ANCHOR id="cairo-Quartz-(CGFont)-Fonts.description" href="cairo/cairo-Quartz-(CGFont)-Fonts.html#cairo-Quartz-(CGFont)-Fonts.description">
394
+ <ANCHOR id="cairo-Quartz-(CGFont)-Fonts.details" href="cairo/cairo-Quartz-(CGFont)-Fonts.html#cairo-Quartz-(CGFont)-Fonts.details">
395
+ <ANCHOR id="CAIRO-HAS-QUARTZ-FONT:CAPS" href="cairo/cairo-Quartz-(CGFont)-Fonts.html#CAIRO-HAS-QUARTZ-FONT:CAPS">
396
+ <ANCHOR id="cairo-quartz-font-face-create-for-cgfont" href="cairo/cairo-Quartz-(CGFont)-Fonts.html#cairo-quartz-font-face-create-for-cgfont">
397
+ <ANCHOR id="cairo-quartz-font-face-create-for-atsu-font-id" href="cairo/cairo-Quartz-(CGFont)-Fonts.html#cairo-quartz-font-face-create-for-atsu-font-id">
398
+ <ANCHOR id="cairo-Quartz-(CGFont)-Fonts.see-also" href="cairo/cairo-Quartz-(CGFont)-Fonts.html#cairo-Quartz-(CGFont)-Fonts.see-also">
399
+ <ANCHOR id="cairo-User-Fonts" href="cairo/cairo-User-Fonts.html">
400
+ <ANCHOR id="cairo-User-Fonts.synopsis" href="cairo/cairo-User-Fonts.html#cairo-User-Fonts.synopsis">
401
+ <ANCHOR id="cairo-User-Fonts.description" href="cairo/cairo-User-Fonts.html#cairo-User-Fonts.description">
402
+ <ANCHOR id="cairo-User-Fonts.details" href="cairo/cairo-User-Fonts.html#cairo-User-Fonts.details">
403
+ <ANCHOR id="CAIRO-HAS-USER-FONT:CAPS" href="cairo/cairo-User-Fonts.html#CAIRO-HAS-USER-FONT:CAPS">
404
+ <ANCHOR id="cairo-user-scaled-font-init-func-t" href="cairo/cairo-User-Fonts.html#cairo-user-scaled-font-init-func-t">
405
+ <ANCHOR id="cairo-user-scaled-font-render-glyph-func-t" href="cairo/cairo-User-Fonts.html#cairo-user-scaled-font-render-glyph-func-t">
406
+ <ANCHOR id="cairo-user-scaled-font-text-to-glyphs-func-t" href="cairo/cairo-User-Fonts.html#cairo-user-scaled-font-text-to-glyphs-func-t">
407
+ <ANCHOR id="cairo-user-scaled-font-unicode-to-glyph-func-t" href="cairo/cairo-User-Fonts.html#cairo-user-scaled-font-unicode-to-glyph-func-t">
408
+ <ANCHOR id="cairo-user-font-face-create" href="cairo/cairo-User-Fonts.html#cairo-user-font-face-create">
409
+ <ANCHOR id="cairo-user-font-face-set-init-func" href="cairo/cairo-User-Fonts.html#cairo-user-font-face-set-init-func">
410
+ <ANCHOR id="cairo-user-font-face-get-init-func" href="cairo/cairo-User-Fonts.html#cairo-user-font-face-get-init-func">
411
+ <ANCHOR id="cairo-user-font-face-set-render-glyph-func" href="cairo/cairo-User-Fonts.html#cairo-user-font-face-set-render-glyph-func">
412
+ <ANCHOR id="cairo-user-font-face-get-render-glyph-func" href="cairo/cairo-User-Fonts.html#cairo-user-font-face-get-render-glyph-func">
413
+ <ANCHOR id="cairo-user-font-face-set-unicode-to-glyph-func" href="cairo/cairo-User-Fonts.html#cairo-user-font-face-set-unicode-to-glyph-func">
414
+ <ANCHOR id="cairo-user-font-face-get-unicode-to-glyph-func" href="cairo/cairo-User-Fonts.html#cairo-user-font-face-get-unicode-to-glyph-func">
415
+ <ANCHOR id="cairo-user-font-face-set-text-to-glyphs-func" href="cairo/cairo-User-Fonts.html#cairo-user-font-face-set-text-to-glyphs-func">
416
+ <ANCHOR id="cairo-user-font-face-get-text-to-glyphs-func" href="cairo/cairo-User-Fonts.html#cairo-user-font-face-get-text-to-glyphs-func">
417
+ <ANCHOR id="cairo-cairo-device-t" href="cairo/cairo-cairo-device-t.html">
418
+ <ANCHOR id="cairo-cairo-device-t.synopsis" href="cairo/cairo-cairo-device-t.html#cairo-cairo-device-t.synopsis">
419
+ <ANCHOR id="cairo-cairo-device-t.description" href="cairo/cairo-cairo-device-t.html#cairo-cairo-device-t.description">
420
+ <ANCHOR id="cairo-cairo-device-t.details" href="cairo/cairo-cairo-device-t.html#cairo-cairo-device-t.details">
421
+ <ANCHOR id="cairo-device-t" href="cairo/cairo-cairo-device-t.html#cairo-device-t">
422
+ <ANCHOR id="cairo-device-reference" href="cairo/cairo-cairo-device-t.html#cairo-device-reference">
423
+ <ANCHOR id="cairo-device-destroy" href="cairo/cairo-cairo-device-t.html#cairo-device-destroy">
424
+ <ANCHOR id="cairo-device-status" href="cairo/cairo-cairo-device-t.html#cairo-device-status">
425
+ <ANCHOR id="cairo-device-finish" href="cairo/cairo-cairo-device-t.html#cairo-device-finish">
426
+ <ANCHOR id="cairo-device-flush" href="cairo/cairo-cairo-device-t.html#cairo-device-flush">
427
+ <ANCHOR id="cairo-device-type-t" href="cairo/cairo-cairo-device-t.html#cairo-device-type-t">
428
+ <ANCHOR id="CAIRO-DEVICE-TYPE-DRM:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-DRM:CAPS">
429
+ <ANCHOR id="CAIRO-DEVICE-TYPE-GL:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-GL:CAPS">
430
+ <ANCHOR id="CAIRO-DEVICE-TYPE-SCRIPT:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-SCRIPT:CAPS">
431
+ <ANCHOR id="CAIRO-DEVICE-TYPE-XCB:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-XCB:CAPS">
432
+ <ANCHOR id="CAIRO-DEVICE-TYPE-XLIB:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-XLIB:CAPS">
433
+ <ANCHOR id="CAIRO-DEVICE-TYPE-XML:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-XML:CAPS">
434
+ <ANCHOR id="cairo-device-get-type" href="cairo/cairo-cairo-device-t.html#cairo-device-get-type">
435
+ <ANCHOR id="cairo-device-get-reference-count" href="cairo/cairo-cairo-device-t.html#cairo-device-get-reference-count">
436
+ <ANCHOR id="cairo-device-set-user-data" href="cairo/cairo-cairo-device-t.html#cairo-device-set-user-data">
437
+ <ANCHOR id="cairo-device-get-user-data" href="cairo/cairo-cairo-device-t.html#cairo-device-get-user-data">
438
+ <ANCHOR id="cairo-device-acquire" href="cairo/cairo-cairo-device-t.html#cairo-device-acquire">
439
+ <ANCHOR id="cairo-device-release" href="cairo/cairo-cairo-device-t.html#cairo-device-release">
440
+ <ANCHOR id="cairo-cairo-device-t.see-also" href="cairo/cairo-cairo-device-t.html#cairo-cairo-device-t.see-also">
441
+ <ANCHOR id="cairo-cairo-surface-t" href="cairo/cairo-cairo-surface-t.html">
442
+ <ANCHOR id="cairo-cairo-surface-t.synopsis" href="cairo/cairo-cairo-surface-t.html#cairo-cairo-surface-t.synopsis">
443
+ <ANCHOR id="cairo-cairo-surface-t.description" href="cairo/cairo-cairo-surface-t.html#cairo-cairo-surface-t.description">
444
+ <ANCHOR id="cairo-cairo-surface-t.details" href="cairo/cairo-cairo-surface-t.html#cairo-cairo-surface-t.details">
445
+ <ANCHOR id="CAIRO-MIME-TYPE-JP2:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-JP2:CAPS">
446
+ <ANCHOR id="CAIRO-MIME-TYPE-JPEG:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-JPEG:CAPS">
447
+ <ANCHOR id="CAIRO-MIME-TYPE-PNG:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-PNG:CAPS">
448
+ <ANCHOR id="CAIRO-MIME-TYPE-URI:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-URI:CAPS">
449
+ <ANCHOR id="cairo-surface-t" href="cairo/cairo-cairo-surface-t.html#cairo-surface-t">
450
+ <ANCHOR id="cairo-content-t" href="cairo/cairo-cairo-surface-t.html#cairo-content-t">
451
+ <ANCHOR id="CAIRO-CONTENT-COLOR:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-CONTENT-COLOR:CAPS">
452
+ <ANCHOR id="CAIRO-CONTENT-ALPHA:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-CONTENT-ALPHA:CAPS">
453
+ <ANCHOR id="CAIRO-CONTENT-COLOR-ALPHA:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-CONTENT-COLOR-ALPHA:CAPS">
454
+ <ANCHOR id="cairo-surface-create-similar" href="cairo/cairo-cairo-surface-t.html#cairo-surface-create-similar">
455
+ <ANCHOR id="cairo-surface-create-for-rectangle" href="cairo/cairo-cairo-surface-t.html#cairo-surface-create-for-rectangle">
456
+ <ANCHOR id="cairo-surface-reference" href="cairo/cairo-cairo-surface-t.html#cairo-surface-reference">
457
+ <ANCHOR id="cairo-surface-destroy" href="cairo/cairo-cairo-surface-t.html#cairo-surface-destroy">
458
+ <ANCHOR id="cairo-surface-status" href="cairo/cairo-cairo-surface-t.html#cairo-surface-status">
459
+ <ANCHOR id="cairo-surface-finish" href="cairo/cairo-cairo-surface-t.html#cairo-surface-finish">
460
+ <ANCHOR id="cairo-surface-flush" href="cairo/cairo-cairo-surface-t.html#cairo-surface-flush">
461
+ <ANCHOR id="cairo-surface-get-device" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-device">
462
+ <ANCHOR id="cairo-surface-get-font-options" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-font-options">
463
+ <ANCHOR id="cairo-surface-get-content" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-content">
464
+ <ANCHOR id="cairo-surface-mark-dirty" href="cairo/cairo-cairo-surface-t.html#cairo-surface-mark-dirty">
465
+ <ANCHOR id="cairo-surface-mark-dirty-rectangle" href="cairo/cairo-cairo-surface-t.html#cairo-surface-mark-dirty-rectangle">
466
+ <ANCHOR id="cairo-surface-set-device-offset" href="cairo/cairo-cairo-surface-t.html#cairo-surface-set-device-offset">
467
+ <ANCHOR id="cairo-surface-get-device-offset" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-device-offset">
468
+ <ANCHOR id="cairo-surface-set-fallback-resolution" href="cairo/cairo-cairo-surface-t.html#cairo-surface-set-fallback-resolution">
469
+ <ANCHOR id="cairo-surface-get-fallback-resolution" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-fallback-resolution">
470
+ <ANCHOR id="cairo-surface-type-t" href="cairo/cairo-cairo-surface-t.html#cairo-surface-type-t">
471
+ <ANCHOR id="CAIRO-SURFACE-TYPE-IMAGE:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-IMAGE:CAPS">
472
+ <ANCHOR id="CAIRO-SURFACE-TYPE-PDF:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-PDF:CAPS">
473
+ <ANCHOR id="CAIRO-SURFACE-TYPE-PS:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-PS:CAPS">
474
+ <ANCHOR id="CAIRO-SURFACE-TYPE-XLIB:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-XLIB:CAPS">
475
+ <ANCHOR id="CAIRO-SURFACE-TYPE-XCB:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-XCB:CAPS">
476
+ <ANCHOR id="CAIRO-SURFACE-TYPE-GLITZ:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-GLITZ:CAPS">
477
+ <ANCHOR id="CAIRO-SURFACE-TYPE-QUARTZ:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-QUARTZ:CAPS">
478
+ <ANCHOR id="CAIRO-SURFACE-TYPE-WIN32:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-WIN32:CAPS">
479
+ <ANCHOR id="CAIRO-SURFACE-TYPE-BEOS:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-BEOS:CAPS">
480
+ <ANCHOR id="CAIRO-SURFACE-TYPE-DIRECTFB:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-DIRECTFB:CAPS">
481
+ <ANCHOR id="CAIRO-SURFACE-TYPE-SVG:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-SVG:CAPS">
482
+ <ANCHOR id="CAIRO-SURFACE-TYPE-OS2:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-OS2:CAPS">
483
+ <ANCHOR id="CAIRO-SURFACE-TYPE-WIN32-PRINTING:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-WIN32-PRINTING:CAPS">
484
+ <ANCHOR id="CAIRO-SURFACE-TYPE-QUARTZ-IMAGE:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-QUARTZ-IMAGE:CAPS">
485
+ <ANCHOR id="CAIRO-SURFACE-TYPE-SCRIPT:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-SCRIPT:CAPS">
486
+ <ANCHOR id="CAIRO-SURFACE-TYPE-QT:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-QT:CAPS">
487
+ <ANCHOR id="CAIRO-SURFACE-TYPE-RECORDING:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-RECORDING:CAPS">
488
+ <ANCHOR id="CAIRO-SURFACE-TYPE-VG:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-VG:CAPS">
489
+ <ANCHOR id="CAIRO-SURFACE-TYPE-GL:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-GL:CAPS">
490
+ <ANCHOR id="CAIRO-SURFACE-TYPE-DRM:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-DRM:CAPS">
491
+ <ANCHOR id="CAIRO-SURFACE-TYPE-TEE:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-TEE:CAPS">
492
+ <ANCHOR id="CAIRO-SURFACE-TYPE-XML:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-XML:CAPS">
493
+ <ANCHOR id="CAIRO-SURFACE-TYPE-SKIA:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-SKIA:CAPS">
494
+ <ANCHOR id="CAIRO-SURFACE-TYPE-SUBSURFACE:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-SUBSURFACE:CAPS">
495
+ <ANCHOR id="cairo-surface-get-type" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-type">
496
+ <ANCHOR id="cairo-surface-get-reference-count" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-reference-count">
497
+ <ANCHOR id="cairo-surface-set-user-data" href="cairo/cairo-cairo-surface-t.html#cairo-surface-set-user-data">
498
+ <ANCHOR id="cairo-surface-get-user-data" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-user-data">
499
+ <ANCHOR id="cairo-surface-copy-page" href="cairo/cairo-cairo-surface-t.html#cairo-surface-copy-page">
500
+ <ANCHOR id="cairo-surface-show-page" href="cairo/cairo-cairo-surface-t.html#cairo-surface-show-page">
501
+ <ANCHOR id="cairo-surface-has-show-text-glyphs" href="cairo/cairo-cairo-surface-t.html#cairo-surface-has-show-text-glyphs">
502
+ <ANCHOR id="cairo-surface-set-mime-data" href="cairo/cairo-cairo-surface-t.html#cairo-surface-set-mime-data">
503
+ <ANCHOR id="cairo-surface-get-mime-data" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-mime-data">
504
+ <ANCHOR id="cairo-cairo-surface-t.see-also" href="cairo/cairo-cairo-surface-t.html#cairo-cairo-surface-t.see-also">
505
+ <ANCHOR id="cairo-Image-Surfaces" href="cairo/cairo-Image-Surfaces.html">
506
+ <ANCHOR id="cairo-Image-Surfaces.synopsis" href="cairo/cairo-Image-Surfaces.html#cairo-Image-Surfaces.synopsis">
507
+ <ANCHOR id="cairo-Image-Surfaces.description" href="cairo/cairo-Image-Surfaces.html#cairo-Image-Surfaces.description">
508
+ <ANCHOR id="cairo-Image-Surfaces.details" href="cairo/cairo-Image-Surfaces.html#cairo-Image-Surfaces.details">
509
+ <ANCHOR id="CAIRO-HAS-IMAGE-SURFACE:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-HAS-IMAGE-SURFACE:CAPS">
510
+ <ANCHOR id="cairo-format-t" href="cairo/cairo-Image-Surfaces.html#cairo-format-t">
511
+ <ANCHOR id="CAIRO-FORMAT-INVALID:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-FORMAT-INVALID:CAPS">
512
+ <ANCHOR id="CAIRO-FORMAT-ARGB32:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-FORMAT-ARGB32:CAPS">
513
+ <ANCHOR id="CAIRO-FORMAT-RGB24:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-FORMAT-RGB24:CAPS">
514
+ <ANCHOR id="CAIRO-FORMAT-A8:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-FORMAT-A8:CAPS">
515
+ <ANCHOR id="CAIRO-FORMAT-A1:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-FORMAT-A1:CAPS">
516
+ <ANCHOR id="CAIRO-FORMAT-RGB16-565:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-FORMAT-RGB16-565:CAPS">
517
+ <ANCHOR id="cairo-format-stride-for-width" href="cairo/cairo-Image-Surfaces.html#cairo-format-stride-for-width">
518
+ <ANCHOR id="cairo-image-surface-create" href="cairo/cairo-Image-Surfaces.html#cairo-image-surface-create">
519
+ <ANCHOR id="cairo-image-surface-create-for-data" href="cairo/cairo-Image-Surfaces.html#cairo-image-surface-create-for-data">
520
+ <ANCHOR id="cairo-image-surface-get-data" href="cairo/cairo-Image-Surfaces.html#cairo-image-surface-get-data">
521
+ <ANCHOR id="cairo-image-surface-get-format" href="cairo/cairo-Image-Surfaces.html#cairo-image-surface-get-format">
522
+ <ANCHOR id="cairo-image-surface-get-width" href="cairo/cairo-Image-Surfaces.html#cairo-image-surface-get-width">
523
+ <ANCHOR id="cairo-image-surface-get-height" href="cairo/cairo-Image-Surfaces.html#cairo-image-surface-get-height">
524
+ <ANCHOR id="cairo-image-surface-get-stride" href="cairo/cairo-Image-Surfaces.html#cairo-image-surface-get-stride">
525
+ <ANCHOR id="cairo-Image-Surfaces.see-also" href="cairo/cairo-Image-Surfaces.html#cairo-Image-Surfaces.see-also">
526
+ <ANCHOR id="cairo-PDF-Surfaces" href="cairo/cairo-PDF-Surfaces.html">
527
+ <ANCHOR id="cairo-PDF-Surfaces.synopsis" href="cairo/cairo-PDF-Surfaces.html#cairo-PDF-Surfaces.synopsis">
528
+ <ANCHOR id="cairo-PDF-Surfaces.description" href="cairo/cairo-PDF-Surfaces.html#cairo-PDF-Surfaces.description">
529
+ <ANCHOR id="cairo-PDF-Surfaces.details" href="cairo/cairo-PDF-Surfaces.html#cairo-PDF-Surfaces.details">
530
+ <ANCHOR id="CAIRO-HAS-PDF-SURFACE:CAPS" href="cairo/cairo-PDF-Surfaces.html#CAIRO-HAS-PDF-SURFACE:CAPS">
531
+ <ANCHOR id="cairo-pdf-surface-create" href="cairo/cairo-PDF-Surfaces.html#cairo-pdf-surface-create">
532
+ <ANCHOR id="cairo-pdf-surface-create-for-stream" href="cairo/cairo-PDF-Surfaces.html#cairo-pdf-surface-create-for-stream">
533
+ <ANCHOR id="cairo-pdf-surface-restrict-to-version" href="cairo/cairo-PDF-Surfaces.html#cairo-pdf-surface-restrict-to-version">
534
+ <ANCHOR id="cairo-pdf-version-t" href="cairo/cairo-PDF-Surfaces.html#cairo-pdf-version-t">
535
+ <ANCHOR id="CAIRO-PDF-VERSION-1-4:CAPS" href="cairo/cairo-PDF-Surfaces.html#CAIRO-PDF-VERSION-1-4:CAPS">
536
+ <ANCHOR id="CAIRO-PDF-VERSION-1-5:CAPS" href="cairo/cairo-PDF-Surfaces.html#CAIRO-PDF-VERSION-1-5:CAPS">
537
+ <ANCHOR id="cairo-pdf-get-versions" href="cairo/cairo-PDF-Surfaces.html#cairo-pdf-get-versions">
538
+ <ANCHOR id="cairo-pdf-version-to-string" href="cairo/cairo-PDF-Surfaces.html#cairo-pdf-version-to-string">
539
+ <ANCHOR id="cairo-pdf-surface-set-size" href="cairo/cairo-PDF-Surfaces.html#cairo-pdf-surface-set-size">
540
+ <ANCHOR id="cairo-PDF-Surfaces.see-also" href="cairo/cairo-PDF-Surfaces.html#cairo-PDF-Surfaces.see-also">
541
+ <ANCHOR id="cairo-PNG-Support" href="cairo/cairo-PNG-Support.html">
542
+ <ANCHOR id="cairo-PNG-Support.synopsis" href="cairo/cairo-PNG-Support.html#cairo-PNG-Support.synopsis">
543
+ <ANCHOR id="cairo-PNG-Support.description" href="cairo/cairo-PNG-Support.html#cairo-PNG-Support.description">
544
+ <ANCHOR id="cairo-PNG-Support.details" href="cairo/cairo-PNG-Support.html#cairo-PNG-Support.details">
545
+ <ANCHOR id="CAIRO-HAS-PNG-FUNCTIONS:CAPS" href="cairo/cairo-PNG-Support.html#CAIRO-HAS-PNG-FUNCTIONS:CAPS">
546
+ <ANCHOR id="cairo-image-surface-create-from-png" href="cairo/cairo-PNG-Support.html#cairo-image-surface-create-from-png">
547
+ <ANCHOR id="cairo-read-func-t" href="cairo/cairo-PNG-Support.html#cairo-read-func-t">
548
+ <ANCHOR id="cairo-image-surface-create-from-png-stream" href="cairo/cairo-PNG-Support.html#cairo-image-surface-create-from-png-stream">
549
+ <ANCHOR id="cairo-surface-write-to-png" href="cairo/cairo-PNG-Support.html#cairo-surface-write-to-png">
550
+ <ANCHOR id="cairo-write-func-t" href="cairo/cairo-PNG-Support.html#cairo-write-func-t">
551
+ <ANCHOR id="cairo-surface-write-to-png-stream" href="cairo/cairo-PNG-Support.html#cairo-surface-write-to-png-stream">
552
+ <ANCHOR id="cairo-PNG-Support.see-also" href="cairo/cairo-PNG-Support.html#cairo-PNG-Support.see-also">
553
+ <ANCHOR id="cairo-PostScript-Surfaces" href="cairo/cairo-PostScript-Surfaces.html">
554
+ <ANCHOR id="cairo-PostScript-Surfaces.synopsis" href="cairo/cairo-PostScript-Surfaces.html#cairo-PostScript-Surfaces.synopsis">
555
+ <ANCHOR id="cairo-PostScript-Surfaces.description" href="cairo/cairo-PostScript-Surfaces.html#cairo-PostScript-Surfaces.description">
556
+ <ANCHOR id="cairo-PostScript-Surfaces.details" href="cairo/cairo-PostScript-Surfaces.html#cairo-PostScript-Surfaces.details">
557
+ <ANCHOR id="CAIRO-HAS-PS-SURFACE:CAPS" href="cairo/cairo-PostScript-Surfaces.html#CAIRO-HAS-PS-SURFACE:CAPS">
558
+ <ANCHOR id="cairo-ps-surface-create" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-create">
559
+ <ANCHOR id="cairo-ps-surface-create-for-stream" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-create-for-stream">
560
+ <ANCHOR id="cairo-ps-surface-restrict-to-level" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-restrict-to-level">
561
+ <ANCHOR id="cairo-ps-level-t" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-level-t">
562
+ <ANCHOR id="CAIRO-PS-LEVEL-2:CAPS" href="cairo/cairo-PostScript-Surfaces.html#CAIRO-PS-LEVEL-2:CAPS">
563
+ <ANCHOR id="CAIRO-PS-LEVEL-3:CAPS" href="cairo/cairo-PostScript-Surfaces.html#CAIRO-PS-LEVEL-3:CAPS">
564
+ <ANCHOR id="cairo-ps-get-levels" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-get-levels">
565
+ <ANCHOR id="cairo-ps-level-to-string" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-level-to-string">
566
+ <ANCHOR id="cairo-ps-surface-set-eps" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-set-eps">
567
+ <ANCHOR id="cairo-ps-surface-get-eps" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-get-eps">
568
+ <ANCHOR id="cairo-ps-surface-set-size" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-set-size">
569
+ <ANCHOR id="cairo-ps-surface-dsc-begin-setup" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-dsc-begin-setup">
570
+ <ANCHOR id="cairo-ps-surface-dsc-begin-page-setup" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-dsc-begin-page-setup">
571
+ <ANCHOR id="cairo-ps-surface-dsc-comment" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-dsc-comment">
572
+ <ANCHOR id="cairo-PostScript-Surfaces.see-also" href="cairo/cairo-PostScript-Surfaces.html#cairo-PostScript-Surfaces.see-also">
573
+ <ANCHOR id="cairo-Win32-Surfaces" href="cairo/cairo-Win32-Surfaces.html">
574
+ <ANCHOR id="cairo-Win32-Surfaces.synopsis" href="cairo/cairo-Win32-Surfaces.html#cairo-Win32-Surfaces.synopsis">
575
+ <ANCHOR id="cairo-Win32-Surfaces.description" href="cairo/cairo-Win32-Surfaces.html#cairo-Win32-Surfaces.description">
576
+ <ANCHOR id="cairo-Win32-Surfaces.details" href="cairo/cairo-Win32-Surfaces.html#cairo-Win32-Surfaces.details">
577
+ <ANCHOR id="CAIRO-HAS-WIN32-SURFACE:CAPS" href="cairo/cairo-Win32-Surfaces.html#CAIRO-HAS-WIN32-SURFACE:CAPS">
578
+ <ANCHOR id="cairo-win32-surface-create" href="cairo/cairo-Win32-Surfaces.html#cairo-win32-surface-create">
579
+ <ANCHOR id="cairo-win32-surface-create-with-dib" href="cairo/cairo-Win32-Surfaces.html#cairo-win32-surface-create-with-dib">
580
+ <ANCHOR id="cairo-win32-surface-create-with-ddb" href="cairo/cairo-Win32-Surfaces.html#cairo-win32-surface-create-with-ddb">
581
+ <ANCHOR id="cairo-win32-printing-surface-create" href="cairo/cairo-Win32-Surfaces.html#cairo-win32-printing-surface-create">
582
+ <ANCHOR id="cairo-win32-surface-get-dc" href="cairo/cairo-Win32-Surfaces.html#cairo-win32-surface-get-dc">
583
+ <ANCHOR id="cairo-win32-surface-get-image" href="cairo/cairo-Win32-Surfaces.html#cairo-win32-surface-get-image">
584
+ <ANCHOR id="cairo-Win32-Surfaces.see-also" href="cairo/cairo-Win32-Surfaces.html#cairo-Win32-Surfaces.see-also">
585
+ <ANCHOR id="cairo-SVG-Surfaces" href="cairo/cairo-SVG-Surfaces.html">
586
+ <ANCHOR id="cairo-SVG-Surfaces.synopsis" href="cairo/cairo-SVG-Surfaces.html#cairo-SVG-Surfaces.synopsis">
587
+ <ANCHOR id="cairo-SVG-Surfaces.description" href="cairo/cairo-SVG-Surfaces.html#cairo-SVG-Surfaces.description">
588
+ <ANCHOR id="cairo-SVG-Surfaces.details" href="cairo/cairo-SVG-Surfaces.html#cairo-SVG-Surfaces.details">
589
+ <ANCHOR id="CAIRO-HAS-SVG-SURFACE:CAPS" href="cairo/cairo-SVG-Surfaces.html#CAIRO-HAS-SVG-SURFACE:CAPS">
590
+ <ANCHOR id="cairo-svg-surface-create" href="cairo/cairo-SVG-Surfaces.html#cairo-svg-surface-create">
591
+ <ANCHOR id="cairo-svg-surface-create-for-stream" href="cairo/cairo-SVG-Surfaces.html#cairo-svg-surface-create-for-stream">
592
+ <ANCHOR id="cairo-svg-surface-restrict-to-version" href="cairo/cairo-SVG-Surfaces.html#cairo-svg-surface-restrict-to-version">
593
+ <ANCHOR id="cairo-svg-version-t" href="cairo/cairo-SVG-Surfaces.html#cairo-svg-version-t">
594
+ <ANCHOR id="CAIRO-SVG-VERSION-1-1:CAPS" href="cairo/cairo-SVG-Surfaces.html#CAIRO-SVG-VERSION-1-1:CAPS">
595
+ <ANCHOR id="CAIRO-SVG-VERSION-1-2:CAPS" href="cairo/cairo-SVG-Surfaces.html#CAIRO-SVG-VERSION-1-2:CAPS">
596
+ <ANCHOR id="cairo-svg-get-versions" href="cairo/cairo-SVG-Surfaces.html#cairo-svg-get-versions">
597
+ <ANCHOR id="cairo-svg-version-to-string" href="cairo/cairo-SVG-Surfaces.html#cairo-svg-version-to-string">
598
+ <ANCHOR id="cairo-SVG-Surfaces.see-also" href="cairo/cairo-SVG-Surfaces.html#cairo-SVG-Surfaces.see-also">
599
+ <ANCHOR id="cairo-Quartz-Surfaces" href="cairo/cairo-Quartz-Surfaces.html">
600
+ <ANCHOR id="cairo-Quartz-Surfaces.synopsis" href="cairo/cairo-Quartz-Surfaces.html#cairo-Quartz-Surfaces.synopsis">
601
+ <ANCHOR id="cairo-Quartz-Surfaces.description" href="cairo/cairo-Quartz-Surfaces.html#cairo-Quartz-Surfaces.description">
602
+ <ANCHOR id="cairo-Quartz-Surfaces.details" href="cairo/cairo-Quartz-Surfaces.html#cairo-Quartz-Surfaces.details">
603
+ <ANCHOR id="CAIRO-HAS-QUARTZ-SURFACE:CAPS" href="cairo/cairo-Quartz-Surfaces.html#CAIRO-HAS-QUARTZ-SURFACE:CAPS">
604
+ <ANCHOR id="cairo-quartz-surface-create" href="cairo/cairo-Quartz-Surfaces.html#cairo-quartz-surface-create">
605
+ <ANCHOR id="cairo-quartz-surface-create-for-cg-context" href="cairo/cairo-Quartz-Surfaces.html#cairo-quartz-surface-create-for-cg-context">
606
+ <ANCHOR id="cairo-quartz-surface-get-cg-context" href="cairo/cairo-Quartz-Surfaces.html#cairo-quartz-surface-get-cg-context">
607
+ <ANCHOR id="cairo-Quartz-Surfaces.see-also" href="cairo/cairo-Quartz-Surfaces.html#cairo-Quartz-Surfaces.see-also">
608
+ <ANCHOR id="cairo-XLib-Surfaces" href="cairo/cairo-XLib-Surfaces.html">
609
+ <ANCHOR id="cairo-XLib-Surfaces.synopsis" href="cairo/cairo-XLib-Surfaces.html#cairo-XLib-Surfaces.synopsis">
610
+ <ANCHOR id="cairo-XLib-Surfaces.description" href="cairo/cairo-XLib-Surfaces.html#cairo-XLib-Surfaces.description">
611
+ <ANCHOR id="cairo-XLib-Surfaces.details" href="cairo/cairo-XLib-Surfaces.html#cairo-XLib-Surfaces.details">
612
+ <ANCHOR id="CAIRO-HAS-XLIB-SURFACE:CAPS" href="cairo/cairo-XLib-Surfaces.html#CAIRO-HAS-XLIB-SURFACE:CAPS">
613
+ <ANCHOR id="cairo-xlib-surface-create" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-create">
614
+ <ANCHOR id="cairo-xlib-surface-create-for-bitmap" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-create-for-bitmap">
615
+ <ANCHOR id="cairo-xlib-surface-set-size" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-set-size">
616
+ <ANCHOR id="cairo-xlib-surface-get-display" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-get-display">
617
+ <ANCHOR id="cairo-xlib-surface-get-screen" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-get-screen">
618
+ <ANCHOR id="cairo-xlib-surface-set-drawable" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-set-drawable">
619
+ <ANCHOR id="cairo-xlib-surface-get-drawable" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-get-drawable">
620
+ <ANCHOR id="cairo-xlib-surface-get-visual" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-get-visual">
621
+ <ANCHOR id="cairo-xlib-surface-get-width" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-get-width">
622
+ <ANCHOR id="cairo-xlib-surface-get-height" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-get-height">
623
+ <ANCHOR id="cairo-xlib-surface-get-depth" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-get-depth">
624
+ <ANCHOR id="cairo-XLib-Surfaces.see-also" href="cairo/cairo-XLib-Surfaces.html#cairo-XLib-Surfaces.see-also">
625
+ <ANCHOR id="cairo-cairo-matrix-t" href="cairo/cairo-cairo-matrix-t.html">
626
+ <ANCHOR id="cairo-cairo-matrix-t.synopsis" href="cairo/cairo-cairo-matrix-t.html#cairo-cairo-matrix-t.synopsis">
627
+ <ANCHOR id="cairo-cairo-matrix-t.description" href="cairo/cairo-cairo-matrix-t.html#cairo-cairo-matrix-t.description">
628
+ <ANCHOR id="cairo-cairo-matrix-t.details" href="cairo/cairo-cairo-matrix-t.html#cairo-cairo-matrix-t.details">
629
+ <ANCHOR id="cairo-matrix-t" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-t">
630
+ <ANCHOR id="cairo-matrix-init" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-init">
631
+ <ANCHOR id="cairo-matrix-init-identity" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-init-identity">
632
+ <ANCHOR id="cairo-matrix-init-translate" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-init-translate">
633
+ <ANCHOR id="cairo-matrix-init-scale" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-init-scale">
634
+ <ANCHOR id="cairo-matrix-init-rotate" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-init-rotate">
635
+ <ANCHOR id="cairo-matrix-translate" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-translate">
636
+ <ANCHOR id="cairo-matrix-scale" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-scale">
637
+ <ANCHOR id="cairo-matrix-rotate" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-rotate">
638
+ <ANCHOR id="cairo-matrix-invert" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-invert">
639
+ <ANCHOR id="cairo-matrix-multiply" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-multiply">
640
+ <ANCHOR id="cairo-matrix-transform-distance" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-transform-distance">
641
+ <ANCHOR id="cairo-matrix-transform-point" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-transform-point">
642
+ <ANCHOR id="cairo-cairo-matrix-t.see-also" href="cairo/cairo-cairo-matrix-t.html#cairo-cairo-matrix-t.see-also">
643
+ <ANCHOR id="cairo-Error-handling" href="cairo/cairo-Error-handling.html">
644
+ <ANCHOR id="cairo-Error-handling.synopsis" href="cairo/cairo-Error-handling.html#cairo-Error-handling.synopsis">
645
+ <ANCHOR id="cairo-Error-handling.description" href="cairo/cairo-Error-handling.html#cairo-Error-handling.description">
646
+ <ANCHOR id="cairo-Error-handling.details" href="cairo/cairo-Error-handling.html#cairo-Error-handling.details">
647
+ <ANCHOR id="cairo-status-t" href="cairo/cairo-Error-handling.html#cairo-status-t">
648
+ <ANCHOR id="CAIRO-STATUS-SUCCESS:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS">
649
+ <ANCHOR id="CAIRO-STATUS-NO-MEMORY:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-NO-MEMORY:CAPS">
650
+ <ANCHOR id="CAIRO-STATUS-INVALID-RESTORE:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-RESTORE:CAPS">
651
+ <ANCHOR id="CAIRO-STATUS-INVALID-POP-GROUP:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-POP-GROUP:CAPS">
652
+ <ANCHOR id="CAIRO-STATUS-NO-CURRENT-POINT:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-NO-CURRENT-POINT:CAPS">
653
+ <ANCHOR id="CAIRO-STATUS-INVALID-MATRIX:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-MATRIX:CAPS">
654
+ <ANCHOR id="CAIRO-STATUS-INVALID-STATUS:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-STATUS:CAPS">
655
+ <ANCHOR id="CAIRO-STATUS-NULL-POINTER:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-NULL-POINTER:CAPS">
656
+ <ANCHOR id="CAIRO-STATUS-INVALID-STRING:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-STRING:CAPS">
657
+ <ANCHOR id="CAIRO-STATUS-INVALID-PATH-DATA:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-PATH-DATA:CAPS">
658
+ <ANCHOR id="CAIRO-STATUS-READ-ERROR:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-READ-ERROR:CAPS">
659
+ <ANCHOR id="CAIRO-STATUS-WRITE-ERROR:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-WRITE-ERROR:CAPS">
660
+ <ANCHOR id="CAIRO-STATUS-SURFACE-FINISHED:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-SURFACE-FINISHED:CAPS">
661
+ <ANCHOR id="CAIRO-STATUS-SURFACE-TYPE-MISMATCH:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-SURFACE-TYPE-MISMATCH:CAPS">
662
+ <ANCHOR id="CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS">
663
+ <ANCHOR id="CAIRO-STATUS-INVALID-CONTENT:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-CONTENT:CAPS">
664
+ <ANCHOR id="CAIRO-STATUS-INVALID-FORMAT:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-FORMAT:CAPS">
665
+ <ANCHOR id="CAIRO-STATUS-INVALID-VISUAL:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-VISUAL:CAPS">
666
+ <ANCHOR id="CAIRO-STATUS-FILE-NOT-FOUND:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-FILE-NOT-FOUND:CAPS">
667
+ <ANCHOR id="CAIRO-STATUS-INVALID-DASH:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-DASH:CAPS">
668
+ <ANCHOR id="CAIRO-STATUS-INVALID-DSC-COMMENT:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-DSC-COMMENT:CAPS">
669
+ <ANCHOR id="CAIRO-STATUS-INVALID-INDEX:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-INDEX:CAPS">
670
+ <ANCHOR id="CAIRO-STATUS-CLIP-NOT-REPRESENTABLE:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-CLIP-NOT-REPRESENTABLE:CAPS">
671
+ <ANCHOR id="CAIRO-STATUS-TEMP-FILE-ERROR:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-TEMP-FILE-ERROR:CAPS">
672
+ <ANCHOR id="CAIRO-STATUS-INVALID-STRIDE:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-STRIDE:CAPS">
673
+ <ANCHOR id="CAIRO-STATUS-FONT-TYPE-MISMATCH:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-FONT-TYPE-MISMATCH:CAPS">
674
+ <ANCHOR id="CAIRO-STATUS-USER-FONT-IMMUTABLE:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-USER-FONT-IMMUTABLE:CAPS">
675
+ <ANCHOR id="CAIRO-STATUS-USER-FONT-ERROR:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-USER-FONT-ERROR:CAPS">
676
+ <ANCHOR id="CAIRO-STATUS-NEGATIVE-COUNT:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-NEGATIVE-COUNT:CAPS">
677
+ <ANCHOR id="CAIRO-STATUS-INVALID-CLUSTERS:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-CLUSTERS:CAPS">
678
+ <ANCHOR id="CAIRO-STATUS-INVALID-SLANT:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-SLANT:CAPS">
679
+ <ANCHOR id="CAIRO-STATUS-INVALID-WEIGHT:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-WEIGHT:CAPS">
680
+ <ANCHOR id="CAIRO-STATUS-INVALID-SIZE:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-SIZE:CAPS">
681
+ <ANCHOR id="CAIRO-STATUS-USER-FONT-NOT-IMPLEMENTED:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-USER-FONT-NOT-IMPLEMENTED:CAPS">
682
+ <ANCHOR id="CAIRO-STATUS-DEVICE-TYPE-MISMATCH:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-DEVICE-TYPE-MISMATCH:CAPS">
683
+ <ANCHOR id="CAIRO-STATUS-DEVICE-ERROR:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-DEVICE-ERROR:CAPS">
684
+ <ANCHOR id="CAIRO-STATUS-LAST-STATUS:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-LAST-STATUS:CAPS">
685
+ <ANCHOR id="cairo-status-to-string" href="cairo/cairo-Error-handling.html#cairo-status-to-string">
686
+ <ANCHOR id="cairo-debug-reset-static-data" href="cairo/cairo-Error-handling.html#cairo-debug-reset-static-data">
687
+ <ANCHOR id="cairo-Error-handling.see-also" href="cairo/cairo-Error-handling.html#cairo-Error-handling.see-also">
688
+ <ANCHOR id="cairo-Version-Information" href="cairo/cairo-Version-Information.html">
689
+ <ANCHOR id="cairo-Version-Information.synopsis" href="cairo/cairo-Version-Information.html#cairo-Version-Information.synopsis">
690
+ <ANCHOR id="cairo-Version-Information.description" href="cairo/cairo-Version-Information.html#cairo-Version-Information.description">
691
+ <ANCHOR id="cairo-Version-Information.details" href="cairo/cairo-Version-Information.html#cairo-Version-Information.details">
692
+ <ANCHOR id="CAIRO-VERSION:CAPS" href="cairo/cairo-Version-Information.html#CAIRO-VERSION:CAPS">
693
+ <ANCHOR id="CAIRO-VERSION-MAJOR:CAPS" href="cairo/cairo-Version-Information.html#CAIRO-VERSION-MAJOR:CAPS">
694
+ <ANCHOR id="CAIRO-VERSION-MINOR:CAPS" href="cairo/cairo-Version-Information.html#CAIRO-VERSION-MINOR:CAPS">
695
+ <ANCHOR id="CAIRO-VERSION-MICRO:CAPS" href="cairo/cairo-Version-Information.html#CAIRO-VERSION-MICRO:CAPS">
696
+ <ANCHOR id="CAIRO-VERSION-STRING:CAPS" href="cairo/cairo-Version-Information.html#CAIRO-VERSION-STRING:CAPS">
697
+ <ANCHOR id="CAIRO-VERSION-ENCODE:CAPS" href="cairo/cairo-Version-Information.html#CAIRO-VERSION-ENCODE:CAPS">
698
+ <ANCHOR id="CAIRO-VERSION-STRINGIZE:CAPS" href="cairo/cairo-Version-Information.html#CAIRO-VERSION-STRINGIZE:CAPS">
699
+ <ANCHOR id="cairo-version" href="cairo/cairo-Version-Information.html#cairo-version">
700
+ <ANCHOR id="cairo-version-string" href="cairo/cairo-Version-Information.html#cairo-version-string">
701
+ <ANCHOR id="cairo-Types" href="cairo/cairo-Types.html">
702
+ <ANCHOR id="cairo-Types.synopsis" href="cairo/cairo-Types.html#cairo-Types.synopsis">
703
+ <ANCHOR id="cairo-Types.description" href="cairo/cairo-Types.html#cairo-Types.description">
704
+ <ANCHOR id="cairo-Types.details" href="cairo/cairo-Types.html#cairo-Types.details">
705
+ <ANCHOR id="cairo-bool-t" href="cairo/cairo-Types.html#cairo-bool-t">
706
+ <ANCHOR id="cairo-user-data-key-t" href="cairo/cairo-Types.html#cairo-user-data-key-t">
707
+ <ANCHOR id="cairo-destroy-func-t" href="cairo/cairo-Types.html#cairo-destroy-func-t">
708
+ <ANCHOR id="cairo-rectangle-int-t" href="cairo/cairo-Types.html#cairo-rectangle-int-t">