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.
- data/NEWS +2 -2
- data/Rakefile +44 -7
- data/ext/cairo/cairo.def +28 -1
- data/ext/cairo/extconf.rb +14 -16
- data/ext/cairo/rb_cairo.c +4 -1
- data/ext/cairo/rb_cairo.h +65 -1
- data/ext/cairo/rb_cairo_constants.c +150 -3
- data/ext/cairo/rb_cairo_context.c +17 -0
- data/ext/cairo/rb_cairo_device.c +406 -0
- data/ext/cairo/rb_cairo_exception.c +83 -32
- data/ext/cairo/rb_cairo_io.c +166 -0
- data/ext/cairo/rb_cairo_io.h +44 -0
- data/ext/cairo/rb_cairo_matrix.c +1 -1
- data/ext/cairo/rb_cairo_private.h +3 -0
- data/ext/cairo/rb_cairo_region.c +385 -0
- data/ext/cairo/rb_cairo_surface.c +674 -199
- data/lib/1.8/cairo.so +0 -0
- data/lib/1.9/cairo.so +0 -0
- data/samples/blur.rb +2 -3
- data/samples/{pac2.rb → pac-nomralize.rb} +5 -6
- data/samples/pac-tee.rb +170 -0
- data/samples/pac.rb +2 -3
- data/samples/png.rb +2 -3
- data/samples/scalable.rb +2 -3
- data/samples/text-on-path.rb +2 -3
- data/samples/text2.rb +2 -3
- data/test/cairo-test-utils.rb +15 -0
- data/test/run-test.rb +5 -4
- data/test/test_context.rb +4 -4
- data/test/test_font_face.rb +34 -21
- data/test/test_recording_surface.rb +18 -0
- data/test/test_region.rb +102 -0
- data/test/test_script_device.rb +46 -0
- data/test/test_script_surface.rb +13 -0
- data/test/test_surface.rb +14 -4
- data/test/test_tee_surface.rb +32 -0
- data/test/test_xml_device.rb +22 -0
- data/test/test_xml_surface.rb +32 -0
- data/tmp/i386-mingw32/cairo/1.9.2/rbconfig.rb +1 -1
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/include/cairo/cairo-deprecated.h +1 -16
- data/vendor/local/include/cairo/cairo-features.h +7 -0
- data/vendor/local/include/cairo/cairo-ft.h +16 -9
- data/vendor/local/include/cairo/cairo-gobject.h +186 -0
- data/vendor/local/include/cairo/cairo-pdf.h +27 -1
- data/vendor/local/include/cairo/cairo-ps.h +1 -1
- data/vendor/local/include/cairo/cairo-script-interpreter.h +117 -0
- data/vendor/local/include/cairo/cairo-svg.h +1 -1
- data/vendor/local/include/cairo/cairo-version.h +2 -2
- data/vendor/local/include/cairo/cairo-win32.h +1 -1
- data/vendor/local/include/cairo/cairo.h +382 -26
- data/vendor/local/lib/cairo.def +44 -0
- data/vendor/local/lib/cairo.lib +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +4 -4
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-png.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo.pc +4 -4
- data/vendor/local/manifest/{cairo-dev_1.8.10-4_win32.mft → cairo-dev_1.10.0-1_win32.mft} +34 -27
- data/vendor/local/manifest/cairo_1.10.0-1_win32.mft +5 -0
- data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING +9 -8
- data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING-LGPL-2.1 +2 -2
- data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING-MPL-1.1 +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +4 -14
- data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +5 -15
- data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +7 -17
- data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +6 -16
- data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +6 -16
- data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +23 -28
- data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +3 -13
- data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +3 -13
- data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +7 -17
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +373 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +330 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +478 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +344 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +320 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1291 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +622 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +134 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +210 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +834 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +318 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +410 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +169 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +715 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +410 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +335 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +291 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +470 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +595 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +384 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +644 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +574 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +1457 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +1076 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1396 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2743 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +13 -20
- data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +13 -23
- data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +11 -21
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +19 -26
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +279 -326
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp +411 -355
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +579 -480
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +147 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +88 -65
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +72 -47
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +43 -32
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +42 -41
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +542 -345
- data/vendor/local/share/gtk-doc/html/cairo/index.html +36 -39
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +674 -444
- data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +6 -16
- data/vendor/local/share/gtk-doc/html/cairo/style.css +152 -54
- data/vendor/local/src/tml/packaging/cairo_1.10.0-1_win32.log +1262 -0
- data/vendor/local/src/tml/packaging/{cairo_1.8.10-4_win32.sh → cairo_1.10.0-1_win32.sh} +3 -3
- metadata +137 -389
- data/doc/doc.css +0 -91
- data/doc/en/cairo-antialias.html +0 -38
- data/doc/en/cairo-clip-not-representable-error.html +0 -47
- data/doc/en/cairo-color-base.html +0 -69
- data/doc/en/cairo-color-cmyk.html +0 -157
- data/doc/en/cairo-color-hsv.html +0 -137
- data/doc/en/cairo-color-rgb.html +0 -142
- data/doc/en/cairo-color-x11.html +0 -173
- data/doc/en/cairo-color.html +0 -238
- data/doc/en/cairo-content.html +0 -37
- data/doc/en/cairo-context-blur.html +0 -39
- data/doc/en/cairo-context-circle.html +0 -39
- data/doc/en/cairo-context-color.html +0 -39
- data/doc/en/cairo-context-path.html +0 -44
- data/doc/en/cairo-context-rectangle.html +0 -39
- data/doc/en/cairo-context-triangle.html +0 -39
- data/doc/en/cairo-context.html +0 -643
- data/doc/en/cairo-error.html +0 -44
- data/doc/en/cairo-extend.html +0 -38
- data/doc/en/cairo-file-not-found.html +0 -47
- data/doc/en/cairo-fill-rule.html +0 -36
- data/doc/en/cairo-filter.html +0 -40
- data/doc/en/cairo-font-extents.html +0 -129
- data/doc/en/cairo-font-face.html +0 -38
- data/doc/en/cairo-font-options.html +0 -139
- data/doc/en/cairo-font-slant.html +0 -37
- data/doc/en/cairo-font-type-mismatch.html +0 -47
- data/doc/en/cairo-font-weight.html +0 -36
- data/doc/en/cairo-format.html +0 -46
- data/doc/en/cairo-glyph.html +0 -99
- data/doc/en/cairo-gradient-pattern.html +0 -74
- data/doc/en/cairo-hint-metrics.html +0 -37
- data/doc/en/cairo-hint-style.html +0 -39
- data/doc/en/cairo-image-surface.html +0 -82
- data/doc/en/cairo-invalid-clusters.html +0 -47
- data/doc/en/cairo-invalid-content-error.html +0 -47
- data/doc/en/cairo-invalid-dash-error.html +0 -47
- data/doc/en/cairo-invalid-dsc-comment-error.html +0 -47
- data/doc/en/cairo-invalid-format-error.html +0 -47
- data/doc/en/cairo-invalid-index-error.html +0 -47
- data/doc/en/cairo-invalid-matrix-error.html +0 -47
- data/doc/en/cairo-invalid-path-data-error.html +0 -47
- data/doc/en/cairo-invalid-pop-group-error.html +0 -47
- data/doc/en/cairo-invalid-restore-error.html +0 -47
- data/doc/en/cairo-invalid-slant.html +0 -47
- data/doc/en/cairo-invalid-status-error.html +0 -47
- data/doc/en/cairo-invalid-stride-error.html +0 -47
- data/doc/en/cairo-invalid-string-error.html +0 -47
- data/doc/en/cairo-invalid-visual-error.html +0 -47
- data/doc/en/cairo-invalid-weight.html +0 -47
- data/doc/en/cairo-line-cap.html +0 -37
- data/doc/en/cairo-line-join.html +0 -37
- data/doc/en/cairo-linear-pattern.html +0 -60
- data/doc/en/cairo-matrix.html +0 -259
- data/doc/en/cairo-negative-count.html +0 -47
- data/doc/en/cairo-no-current-point-error.html +0 -47
- data/doc/en/cairo-null-pointer-error.html +0 -47
- data/doc/en/cairo-operator.html +0 -48
- data/doc/en/cairo-paper-parse-error.html +0 -47
- data/doc/en/cairo-paper-unknown-paper-name.html +0 -66
- data/doc/en/cairo-paper-unknown-unit.html +0 -66
- data/doc/en/cairo-paper-unrecognized-paper-description.html +0 -66
- data/doc/en/cairo-paper.html +0 -184
- data/doc/en/cairo-path-close-path.html +0 -49
- data/doc/en/cairo-path-curve-to.html +0 -49
- data/doc/en/cairo-path-data-type.html +0 -38
- data/doc/en/cairo-path-data.html +0 -98
- data/doc/en/cairo-path-line-to.html +0 -49
- data/doc/en/cairo-path-move-to.html +0 -49
- data/doc/en/cairo-path.html +0 -155
- data/doc/en/cairo-pattern-type-mismatch-error.html +0 -47
- data/doc/en/cairo-pattern.html +0 -99
- data/doc/en/cairo-pdf-surface.html +0 -57
- data/doc/en/cairo-point.html +0 -74
- data/doc/en/cairo-ps-level.html +0 -49
- data/doc/en/cairo-ps-surface.html +0 -92
- data/doc/en/cairo-quartz-image-surface.html +0 -57
- data/doc/en/cairo-quartz-surface.html +0 -57
- data/doc/en/cairo-radial-pattern.html +0 -60
- data/doc/en/cairo-read-error.html +0 -47
- data/doc/en/cairo-rectangle.html +0 -89
- data/doc/en/cairo-scaled-font.html +0 -94
- data/doc/en/cairo-solid-pattern.html +0 -62
- data/doc/en/cairo-subpixel-order.html +0 -39
- data/doc/en/cairo-surface-finished-error.html +0 -47
- data/doc/en/cairo-surface-pattern.html +0 -57
- data/doc/en/cairo-surface-type-mismatch-error.html +0 -47
- data/doc/en/cairo-surface.html +0 -121
- data/doc/en/cairo-svg-surface.html +0 -77
- data/doc/en/cairo-svg-version.html +0 -49
- data/doc/en/cairo-temp-file-error.html +0 -47
- data/doc/en/cairo-text-cluster-flag.html +0 -35
- data/doc/en/cairo-text-cluster.html +0 -84
- data/doc/en/cairo-text-extents.html +0 -144
- data/doc/en/cairo-toy-font-face.html +0 -67
- data/doc/en/cairo-user-font-error.html +0 -47
- data/doc/en/cairo-user-font-face-text-to-glyphs-data.html +0 -94
- data/doc/en/cairo-user-font-face.html +0 -72
- data/doc/en/cairo-user-font-immutable.html +0 -47
- data/doc/en/cairo-win32-printing-surface.html +0 -57
- data/doc/en/cairo-win32-surface.html +0 -62
- data/doc/en/cairo-write-error.html +0 -47
- data/doc/en/cairo.html +0 -131
- data/doc/en/index.html +0 -1154
- data/doc/index.html +0 -18
- data/doc/ja/cairo-antialias.html +0 -57
- data/doc/ja/cairo-clip-not-representable-error.html +0 -56
- data/doc/ja/cairo-color-base.html +0 -75
- data/doc/ja/cairo-color-cmyk.html +0 -152
- data/doc/ja/cairo-color-hsv.html +0 -135
- data/doc/ja/cairo-color-rgb.html +0 -145
- data/doc/ja/cairo-color-x11.html +0 -183
- data/doc/ja/cairo-color.html +0 -317
- data/doc/ja/cairo-content.html +0 -51
- data/doc/ja/cairo-context-blur.html +0 -53
- data/doc/ja/cairo-context-circle.html +0 -54
- data/doc/ja/cairo-context-color.html +0 -52
- data/doc/ja/cairo-context-path.html +0 -77
- data/doc/ja/cairo-context-rectangle.html +0 -60
- data/doc/ja/cairo-context-triangle.html +0 -47
- data/doc/ja/cairo-context.html +0 -1542
- data/doc/ja/cairo-error.html +0 -56
- data/doc/ja/cairo-extend.html +0 -56
- data/doc/ja/cairo-file-not-found.html +0 -51
- data/doc/ja/cairo-fill-rule.html +0 -58
- data/doc/ja/cairo-filter.html +0 -43
- data/doc/ja/cairo-font-extents.html +0 -164
- data/doc/ja/cairo-font-face.html +0 -55
- data/doc/ja/cairo-font-options.html +0 -189
- data/doc/ja/cairo-font-slant.html +0 -50
- data/doc/ja/cairo-font-type-mismatch.html +0 -52
- data/doc/ja/cairo-font-weight.html +0 -47
- data/doc/ja/cairo-format.html +0 -81
- data/doc/ja/cairo-glyph.html +0 -115
- data/doc/ja/cairo-gradient-pattern.html +0 -119
- data/doc/ja/cairo-hint-metrics.html +0 -57
- data/doc/ja/cairo-hint-style.html +0 -64
- data/doc/ja/cairo-image-surface.html +0 -131
- data/doc/ja/cairo-invalid-clusters.html +0 -55
- data/doc/ja/cairo-invalid-content-error.html +0 -54
- data/doc/ja/cairo-invalid-dash-error.html +0 -54
- data/doc/ja/cairo-invalid-dsc-comment-error.html +0 -54
- data/doc/ja/cairo-invalid-format-error.html +0 -54
- data/doc/ja/cairo-invalid-index-error.html +0 -54
- data/doc/ja/cairo-invalid-matrix-error.html +0 -54
- data/doc/ja/cairo-invalid-path-data-error.html +0 -54
- data/doc/ja/cairo-invalid-pop-group-error.html +0 -54
- data/doc/ja/cairo-invalid-restore-error.html +0 -55
- data/doc/ja/cairo-invalid-slant.html +0 -57
- data/doc/ja/cairo-invalid-status-error.html +0 -55
- data/doc/ja/cairo-invalid-stride-error.html +0 -55
- data/doc/ja/cairo-invalid-string-error.html +0 -54
- data/doc/ja/cairo-invalid-visual-error.html +0 -57
- data/doc/ja/cairo-invalid-weight.html +0 -57
- data/doc/ja/cairo-line-cap.html +0 -50
- data/doc/ja/cairo-line-join.html +0 -53
- data/doc/ja/cairo-linear-pattern.html +0 -87
- data/doc/ja/cairo-matrix.html +0 -354
- data/doc/ja/cairo-negative-count.html +0 -52
- data/doc/ja/cairo-no-current-point-error.html +0 -54
- data/doc/ja/cairo-null-pointer-error.html +0 -54
- data/doc/ja/cairo-operator.html +0 -51
- data/doc/ja/cairo-paper-parse-error.html +0 -55
- data/doc/ja/cairo-paper-unknown-paper-name.html +0 -76
- data/doc/ja/cairo-paper-unknown-unit.html +0 -75
- data/doc/ja/cairo-paper-unrecognized-paper-description.html +0 -76
- data/doc/ja/cairo-paper.html +0 -357
- data/doc/ja/cairo-path-close-path.html +0 -57
- data/doc/ja/cairo-path-curve-to.html +0 -70
- data/doc/ja/cairo-path-data-type.html +0 -53
- data/doc/ja/cairo-path-data.html +0 -127
- data/doc/ja/cairo-path-line-to.html +0 -62
- data/doc/ja/cairo-path-move-to.html +0 -62
- data/doc/ja/cairo-path.html +0 -144
- data/doc/ja/cairo-pattern-type-mismatch-error.html +0 -56
- data/doc/ja/cairo-pattern.html +0 -128
- data/doc/ja/cairo-pdf-surface.html +0 -86
- data/doc/ja/cairo-point.html +0 -90
- data/doc/ja/cairo-ps-level.html +0 -62
- data/doc/ja/cairo-ps-surface.html +0 -214
- data/doc/ja/cairo-quartz-image-surface.html +0 -75
- data/doc/ja/cairo-quartz-surface.html +0 -93
- data/doc/ja/cairo-radial-pattern.html +0 -93
- data/doc/ja/cairo-read-error.html +0 -55
- data/doc/ja/cairo-rectangle.html +0 -109
- data/doc/ja/cairo-scaled-font.html +0 -180
- data/doc/ja/cairo-solid-pattern.html +0 -87
- data/doc/ja/cairo-subpixel-order.html +0 -57
- data/doc/ja/cairo-surface-finished-error.html +0 -54
- data/doc/ja/cairo-surface-pattern.html +0 -68
- data/doc/ja/cairo-surface-type-mismatch-error.html +0 -56
- data/doc/ja/cairo-surface.html +0 -213
- data/doc/ja/cairo-svg-surface.html +0 -114
- data/doc/ja/cairo-svg-version.html +0 -66
- data/doc/ja/cairo-temp-file-error.html +0 -50
- data/doc/ja/cairo-text-cluster-flag.html +0 -46
- data/doc/ja/cairo-text-cluster.html +0 -102
- data/doc/ja/cairo-text-extents.html +0 -163
- data/doc/ja/cairo-toy-font-face.html +0 -107
- data/doc/ja/cairo-user-font-error.html +0 -55
- data/doc/ja/cairo-user-font-face-text-to-glyphs-data.html +0 -156
- data/doc/ja/cairo-user-font-face.html +0 -268
- data/doc/ja/cairo-user-font-immutable.html +0 -54
- data/doc/ja/cairo-win32-printing-surface.html +0 -80
- data/doc/ja/cairo-win32-surface.html +0 -100
- data/doc/ja/cairo-write-error.html +0 -55
- data/doc/ja/cairo.html +0 -177
- data/doc/ja/index.html +0 -1156
- data/pkg-config.rb +0 -313
- data/test-unit/Rakefile +0 -30
- data/test-unit/bin/testrb +0 -5
- data/test-unit/lib/test/unit.rb +0 -280
- data/test-unit/lib/test/unit/assertionfailederror.rb +0 -14
- data/test-unit/lib/test/unit/assertions.rb +0 -722
- data/test-unit/lib/test/unit/attribute.rb +0 -125
- data/test-unit/lib/test/unit/autorunner.rb +0 -254
- data/test-unit/lib/test/unit/collector.rb +0 -43
- data/test-unit/lib/test/unit/collector/descendant.rb +0 -23
- data/test-unit/lib/test/unit/collector/dir.rb +0 -108
- data/test-unit/lib/test/unit/collector/load.rb +0 -135
- data/test-unit/lib/test/unit/collector/objectspace.rb +0 -34
- data/test-unit/lib/test/unit/color.rb +0 -61
- data/test-unit/lib/test/unit/diff.rb +0 -524
- data/test-unit/lib/test/unit/error.rb +0 -124
- data/test-unit/lib/test/unit/exceptionhandler.rb +0 -39
- data/test-unit/lib/test/unit/failure.rb +0 -110
- data/test-unit/lib/test/unit/fixture.rb +0 -185
- data/test-unit/lib/test/unit/notification.rb +0 -125
- data/test-unit/lib/test/unit/omission.rb +0 -143
- data/test-unit/lib/test/unit/pending.rb +0 -146
- data/test-unit/lib/test/unit/priority.rb +0 -146
- data/test-unit/lib/test/unit/runner/console.rb +0 -46
- data/test-unit/lib/test/unit/runner/emacs.rb +0 -8
- data/test-unit/lib/test/unit/testcase.rb +0 -281
- data/test-unit/lib/test/unit/testresult.rb +0 -89
- data/test-unit/lib/test/unit/testsuite.rb +0 -110
- data/test-unit/lib/test/unit/ui/console/outputlevel.rb +0 -14
- data/test-unit/lib/test/unit/ui/console/testrunner.rb +0 -195
- data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +0 -49
- data/test-unit/lib/test/unit/ui/testrunner.rb +0 -20
- data/test-unit/lib/test/unit/ui/testrunnermediator.rb +0 -77
- data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +0 -41
- data/test-unit/lib/test/unit/util/backtracefilter.rb +0 -41
- data/test-unit/lib/test/unit/util/observable.rb +0 -90
- data/test-unit/lib/test/unit/util/procwrapper.rb +0 -48
- data/test-unit/lib/test/unit/version.rb +0 -7
- data/test-unit/sample/adder.rb +0 -13
- data/test-unit/sample/subtracter.rb +0 -12
- data/test-unit/sample/tc_adder.rb +0 -18
- data/test-unit/sample/tc_subtracter.rb +0 -18
- data/test-unit/sample/ts_examples.rb +0 -7
- data/test-unit/test/collector/test_descendant.rb +0 -135
- data/test-unit/test/collector/test_dir.rb +0 -406
- data/test-unit/test/collector/test_load.rb +0 -333
- data/test-unit/test/collector/test_objectspace.rb +0 -98
- data/test-unit/test/run-test.rb +0 -13
- data/test-unit/test/test_assertions.rb +0 -693
- data/test-unit/test/test_attribute.rb +0 -86
- data/test-unit/test/test_color.rb +0 -37
- data/test-unit/test/test_diff.rb +0 -477
- data/test-unit/test/test_emacs_runner.rb +0 -60
- data/test-unit/test/test_error.rb +0 -26
- data/test-unit/test/test_failure.rb +0 -33
- data/test-unit/test/test_fixture.rb +0 -252
- data/test-unit/test/test_notification.rb +0 -33
- data/test-unit/test/test_omission.rb +0 -81
- data/test-unit/test/test_pending.rb +0 -70
- data/test-unit/test/test_priority.rb +0 -89
- data/test-unit/test/test_testcase.rb +0 -430
- data/test-unit/test/test_testresult.rb +0 -113
- data/test-unit/test/test_testsuite.rb +0 -129
- data/test-unit/test/testunit_test_util.rb +0 -14
- data/test-unit/test/ui/test_testrunmediator.rb +0 -20
- data/test-unit/test/util/test_backtracefilter.rb +0 -41
- data/test-unit/test/util/test_observable.rb +0 -102
- data/test-unit/test/util/test_procwrapper.rb +0 -36
- data/test/test_pkg_config.rb +0 -123
- data/vendor/local/include/libpng14/png.h +0 -2701
- data/vendor/local/include/libpng14/pngconf.h +0 -1525
- data/vendor/local/include/png.h +0 -2701
- data/vendor/local/include/pngconf.h +0 -1525
- data/vendor/local/include/zconf.h +0 -461
- data/vendor/local/include/zlib.h +0 -1589
- data/vendor/local/lib/libpng.def +0 -192
- data/vendor/local/lib/libpng.lib +0 -0
- data/vendor/local/lib/libpng14.dll.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +0 -11
- data/vendor/local/lib/pkgconfig/libpng14.pc +0 -11
- data/vendor/local/lib/zdll.lib +0 -0
- data/vendor/local/lib/zlib.def +0 -67
- data/vendor/local/manifest/cairo_1.8.10-4_win32.mft +0 -5
- data/vendor/local/manifest/libpng-dev_1.4.3-1_win32.mft +0 -15
- data/vendor/local/manifest/zlib-dev_1.2.5-2_win32.mft +0 -8
- data/vendor/local/share/gtk-doc/html/cairo/cairo-context.html +0 -2643
- data/vendor/local/share/gtk-doc/html/cairo/cairo-error-status.html +0 -360
- data/vendor/local/share/gtk-doc/html/cairo/cairo-font-face.html +0 -408
- data/vendor/local/share/gtk-doc/html/cairo/cairo-font-options.html +0 -678
- data/vendor/local/share/gtk-doc/html/cairo/cairo-ft-font.html +0 -319
- data/vendor/local/share/gtk-doc/html/cairo/cairo-image-surface.html +0 -473
- data/vendor/local/share/gtk-doc/html/cairo/cairo-matrix.html +0 -596
- data/vendor/local/share/gtk-doc/html/cairo/cairo-paths.html +0 -1274
- data/vendor/local/share/gtk-doc/html/cairo/cairo-pattern.html +0 -1485
- data/vendor/local/share/gtk-doc/html/cairo/cairo-pdf-surface.html +0 -238
- data/vendor/local/share/gtk-doc/html/cairo/cairo-png-functions.html +0 -341
- data/vendor/local/share/gtk-doc/html/cairo/cairo-ps-surface.html +0 -622
- data/vendor/local/share/gtk-doc/html/cairo/cairo-quartz-font.html +0 -151
- data/vendor/local/share/gtk-doc/html/cairo/cairo-quartz-surface.html +0 -219
- data/vendor/local/share/gtk-doc/html/cairo/cairo-scaled-font.html +0 -1023
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surface.html +0 -1026
- data/vendor/local/share/gtk-doc/html/cairo/cairo-svg-surface.html +0 -321
- data/vendor/local/share/gtk-doc/html/cairo/cairo-transformations.html +0 -436
- data/vendor/local/share/gtk-doc/html/cairo/cairo-types.html +0 -133
- data/vendor/local/share/gtk-doc/html/cairo/cairo-user-font.html +0 -735
- data/vendor/local/share/gtk-doc/html/cairo/cairo-version-info.html +0 -345
- data/vendor/local/share/gtk-doc/html/cairo/cairo-win32-font.html +0 -358
- data/vendor/local/share/gtk-doc/html/cairo/cairo-win32-surface.html +0 -312
- data/vendor/local/share/gtk-doc/html/cairo/cairo-xlib-surface.html +0 -492
- data/vendor/local/share/man/man3/libpng.3 +0 -4455
- data/vendor/local/share/man/man3/libpngpf.3 +0 -808
- data/vendor/local/share/man/man5/png.5 +0 -74
- data/vendor/local/src/tml/packaging/cairo_1.8.10-4_win32.log +0 -920
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.log +0 -272
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.sh +0 -71
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.log +0 -42
- 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.
|
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.
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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.
|
139
|
+
Generated by GTK-Doc V1.15</div>
|
143
140
|
</body>
|
144
|
-
</html>
|
141
|
+
</html>
|
@@ -1,163 +1,261 @@
|
|
1
|
-
<ANCHOR id="cairo-
|
2
|
-
<ANCHOR id="cairo-
|
3
|
-
<ANCHOR id="cairo-
|
4
|
-
<ANCHOR id="cairo-
|
5
|
-
<ANCHOR id="cairo-t" href="cairo/cairo-
|
6
|
-
<ANCHOR id="cairo-create" href="cairo/cairo-
|
7
|
-
<ANCHOR id="cairo-reference" href="cairo/cairo-
|
8
|
-
<ANCHOR id="cairo-destroy" href="cairo/cairo-
|
9
|
-
<ANCHOR id="cairo-status" href="cairo/cairo-
|
10
|
-
<ANCHOR id="cairo-save" href="cairo/cairo-
|
11
|
-
<ANCHOR id="cairo-restore" href="cairo/cairo-
|
12
|
-
<ANCHOR id="cairo-get-target" href="cairo/cairo-
|
13
|
-
<ANCHOR id="cairo-push-group" href="cairo/cairo-
|
14
|
-
<ANCHOR id="cairo-push-group-with-content" href="cairo/cairo-
|
15
|
-
<ANCHOR id="cairo-pop-group" href="cairo/cairo-
|
16
|
-
<ANCHOR id="cairo-pop-group-to-source" href="cairo/cairo-
|
17
|
-
<ANCHOR id="cairo-get-group-target" href="cairo/cairo-
|
18
|
-
<ANCHOR id="cairo-set-source-rgb" href="cairo/cairo-
|
19
|
-
<ANCHOR id="cairo-set-source-rgba" href="cairo/cairo-
|
20
|
-
<ANCHOR id="cairo-set-source" href="cairo/cairo-
|
21
|
-
<ANCHOR id="cairo-set-source-surface" href="cairo/cairo-
|
22
|
-
<ANCHOR id="cairo-get-source" href="cairo/cairo-
|
23
|
-
<ANCHOR id="cairo-antialias-t" href="cairo/cairo-
|
24
|
-
<ANCHOR id="
|
25
|
-
<ANCHOR id="
|
26
|
-
<ANCHOR id="
|
27
|
-
<ANCHOR id="
|
28
|
-
<ANCHOR id="cairo-
|
29
|
-
<ANCHOR id="cairo-
|
30
|
-
<ANCHOR id="cairo-set-
|
31
|
-
<ANCHOR id="cairo-get-
|
32
|
-
<ANCHOR id="cairo-
|
33
|
-
<ANCHOR id="cairo-
|
34
|
-
<ANCHOR id="
|
35
|
-
<ANCHOR id="
|
36
|
-
<ANCHOR id="cairo-set-
|
37
|
-
<ANCHOR id="cairo-get-
|
38
|
-
<ANCHOR id="cairo-
|
39
|
-
<ANCHOR id="
|
40
|
-
<ANCHOR id="
|
41
|
-
<ANCHOR id="
|
42
|
-
<ANCHOR id="cairo-
|
43
|
-
<ANCHOR id="cairo-
|
44
|
-
<ANCHOR id="cairo-
|
45
|
-
<ANCHOR id="
|
46
|
-
<ANCHOR id="
|
47
|
-
<ANCHOR id="
|
48
|
-
<ANCHOR id="cairo-
|
49
|
-
<ANCHOR id="cairo-
|
50
|
-
<ANCHOR id="cairo-
|
51
|
-
<ANCHOR id="cairo-
|
52
|
-
<ANCHOR id="cairo-
|
53
|
-
<ANCHOR id="cairo-
|
54
|
-
<ANCHOR id="cairo-
|
55
|
-
<ANCHOR id="
|
56
|
-
<ANCHOR id="
|
57
|
-
<ANCHOR id="
|
58
|
-
<ANCHOR id="
|
59
|
-
<ANCHOR id="
|
60
|
-
<ANCHOR id="
|
61
|
-
<ANCHOR id="
|
62
|
-
<ANCHOR id="
|
63
|
-
<ANCHOR id="
|
64
|
-
<ANCHOR id="
|
65
|
-
<ANCHOR id="
|
66
|
-
<ANCHOR id="
|
67
|
-
<ANCHOR id="
|
68
|
-
<ANCHOR id="
|
69
|
-
<ANCHOR id="
|
70
|
-
<ANCHOR id="
|
71
|
-
<ANCHOR id="
|
72
|
-
<ANCHOR id="
|
73
|
-
<ANCHOR id="
|
74
|
-
<ANCHOR id="
|
75
|
-
<ANCHOR id="
|
76
|
-
<ANCHOR id="
|
77
|
-
<ANCHOR id="
|
78
|
-
<ANCHOR id="
|
79
|
-
<ANCHOR id="
|
80
|
-
<ANCHOR id="
|
81
|
-
<ANCHOR id="
|
82
|
-
<ANCHOR id="
|
83
|
-
<ANCHOR id="
|
84
|
-
<ANCHOR id="cairo-
|
85
|
-
<ANCHOR id="cairo-get-
|
86
|
-
<ANCHOR id="cairo-
|
87
|
-
<ANCHOR id="cairo-
|
88
|
-
<ANCHOR id="cairo-
|
89
|
-
<ANCHOR id="cairo-
|
90
|
-
<ANCHOR id="cairo-
|
91
|
-
<ANCHOR id="cairo-
|
92
|
-
<ANCHOR id="cairo-
|
93
|
-
<ANCHOR id="cairo-
|
94
|
-
<ANCHOR id="cairo-rectangle" href="cairo/cairo-
|
95
|
-
<ANCHOR id="cairo-
|
96
|
-
<ANCHOR id="cairo-
|
97
|
-
<ANCHOR id="cairo-
|
98
|
-
<ANCHOR id="cairo-
|
99
|
-
<ANCHOR id="cairo-
|
100
|
-
<ANCHOR id="cairo-
|
101
|
-
<ANCHOR id="cairo-
|
102
|
-
<ANCHOR id="cairo-
|
103
|
-
<ANCHOR id="cairo-
|
104
|
-
<ANCHOR id="cairo-
|
105
|
-
<ANCHOR id="cairo-
|
106
|
-
<ANCHOR id="cairo-
|
107
|
-
<ANCHOR id="cairo-
|
108
|
-
<ANCHOR id="cairo-
|
109
|
-
<ANCHOR id="cairo-
|
110
|
-
<ANCHOR id="cairo-
|
111
|
-
<ANCHOR id="cairo-
|
112
|
-
<ANCHOR id="cairo-
|
113
|
-
<ANCHOR id="cairo-
|
114
|
-
<ANCHOR id="cairo-
|
115
|
-
<ANCHOR id="cairo-
|
116
|
-
<ANCHOR id="cairo-
|
117
|
-
<ANCHOR id="cairo-
|
118
|
-
<ANCHOR id="cairo-
|
119
|
-
<ANCHOR id="cairo-
|
120
|
-
<ANCHOR id="cairo-
|
121
|
-
<ANCHOR id="cairo-
|
122
|
-
<ANCHOR id="
|
123
|
-
<ANCHOR id="
|
124
|
-
<ANCHOR id="
|
125
|
-
<ANCHOR id="
|
126
|
-
<ANCHOR id="cairo-
|
127
|
-
<ANCHOR id="cairo-
|
128
|
-
<ANCHOR id="cairo-
|
129
|
-
<ANCHOR id="cairo-
|
130
|
-
<ANCHOR id="cairo-
|
131
|
-
<ANCHOR id="cairo-
|
132
|
-
<ANCHOR id="cairo-
|
133
|
-
<ANCHOR id="cairo-
|
134
|
-
<ANCHOR id="cairo-
|
135
|
-
<ANCHOR id="cairo-
|
136
|
-
<ANCHOR id="cairo-
|
137
|
-
<ANCHOR id="cairo-
|
138
|
-
<ANCHOR id="cairo-
|
139
|
-
<ANCHOR id="cairo-
|
140
|
-
<ANCHOR id="cairo-
|
141
|
-
<ANCHOR id="cairo-
|
142
|
-
<ANCHOR id="cairo-
|
143
|
-
<ANCHOR id="cairo-
|
144
|
-
<ANCHOR id="cairo-
|
145
|
-
<ANCHOR id="cairo-
|
146
|
-
<ANCHOR id="cairo-
|
147
|
-
<ANCHOR id="cairo-
|
148
|
-
<ANCHOR id="cairo-
|
149
|
-
<ANCHOR id="cairo-
|
150
|
-
<ANCHOR id="cairo-
|
151
|
-
<ANCHOR id="cairo-
|
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="
|
196
|
-
<ANCHOR id="
|
197
|
-
<ANCHOR id="
|
198
|
-
<ANCHOR id="
|
199
|
-
<ANCHOR id="
|
200
|
-
<ANCHOR id="cairo-
|
201
|
-
<ANCHOR id="cairo-
|
202
|
-
<ANCHOR id="cairo-
|
203
|
-
<ANCHOR id="cairo-
|
204
|
-
<ANCHOR id="cairo-
|
205
|
-
<ANCHOR id="cairo-scaled-font-
|
206
|
-
<ANCHOR id="cairo-scaled-font-
|
207
|
-
<ANCHOR id="cairo-scaled-font-
|
208
|
-
<ANCHOR id="cairo-scaled-font-
|
209
|
-
<ANCHOR id="cairo-font-
|
210
|
-
<ANCHOR id="cairo-scaled-font-
|
211
|
-
<ANCHOR id="cairo-
|
212
|
-
<ANCHOR id="cairo-scaled-font-
|
213
|
-
<ANCHOR id="cairo-scaled-font-
|
214
|
-
<ANCHOR id="cairo-
|
215
|
-
<ANCHOR id="cairo-scaled-font-
|
216
|
-
<ANCHOR id="cairo-
|
217
|
-
<ANCHOR id="cairo-scaled-font-
|
218
|
-
<ANCHOR id="cairo-scaled-font-
|
219
|
-
<ANCHOR id="cairo-scaled-font-
|
220
|
-
<ANCHOR id="cairo-scaled-font-get-
|
221
|
-
<ANCHOR id="cairo-scaled-font-get-
|
222
|
-
<ANCHOR id="cairo-scaled-font-
|
223
|
-
<ANCHOR id="cairo-scaled-font-get-
|
224
|
-
<ANCHOR id="cairo-scaled-font
|
225
|
-
<ANCHOR id="cairo-font-
|
226
|
-
<ANCHOR id="cairo-font-
|
227
|
-
<ANCHOR id="cairo-font-
|
228
|
-
<ANCHOR id="cairo-font-
|
229
|
-
<ANCHOR id="cairo-font-
|
230
|
-
<ANCHOR id="cairo-font-options-
|
231
|
-
<ANCHOR id="cairo-font-options-
|
232
|
-
<ANCHOR id="cairo-font-options-
|
233
|
-
<ANCHOR id="cairo-font-options-
|
234
|
-
<ANCHOR id="cairo-font-options-
|
235
|
-
<ANCHOR id="cairo-font-options-
|
236
|
-
<ANCHOR id="cairo-font-options-
|
237
|
-
<ANCHOR id="cairo-font-options-
|
238
|
-
<ANCHOR id="cairo-font-options-
|
239
|
-
<ANCHOR id="cairo-
|
240
|
-
<ANCHOR id="cairo-font-options-
|
241
|
-
<ANCHOR id="cairo-font-options-
|
242
|
-
<ANCHOR id="cairo-
|
243
|
-
<ANCHOR id="cairo-font-options-
|
244
|
-
<ANCHOR id="cairo-
|
245
|
-
<ANCHOR id="
|
246
|
-
<ANCHOR id="
|
247
|
-
<ANCHOR id="
|
248
|
-
<ANCHOR id="
|
249
|
-
<ANCHOR id="
|
250
|
-
<ANCHOR id="cairo-
|
251
|
-
<ANCHOR id="cairo-
|
252
|
-
<ANCHOR id="cairo-
|
253
|
-
<ANCHOR id="CAIRO-
|
254
|
-
<ANCHOR id="
|
255
|
-
<ANCHOR id="
|
256
|
-
<ANCHOR id="
|
257
|
-
<ANCHOR id="
|
258
|
-
<ANCHOR id="cairo-
|
259
|
-
<ANCHOR id="cairo-
|
260
|
-
<ANCHOR id="cairo-
|
261
|
-
<ANCHOR id="
|
262
|
-
<ANCHOR id="
|
263
|
-
<ANCHOR id="
|
264
|
-
<ANCHOR id="
|
265
|
-
<ANCHOR id="cairo-
|
266
|
-
<ANCHOR id="cairo-
|
267
|
-
<ANCHOR id="cairo-
|
268
|
-
<ANCHOR id="cairo-
|
269
|
-
<ANCHOR id="cairo-
|
270
|
-
<ANCHOR id="cairo-
|
271
|
-
<ANCHOR id="
|
272
|
-
<ANCHOR id="
|
273
|
-
<ANCHOR id="cairo-
|
274
|
-
<ANCHOR id="cairo-
|
275
|
-
<ANCHOR id="cairo-
|
276
|
-
<ANCHOR id="cairo-
|
277
|
-
<ANCHOR id="cairo-
|
278
|
-
<ANCHOR id="
|
279
|
-
<ANCHOR id="cairo-
|
280
|
-
<ANCHOR id="cairo-
|
281
|
-
<ANCHOR id="cairo-
|
282
|
-
<ANCHOR id="cairo-
|
283
|
-
<ANCHOR id="
|
284
|
-
<ANCHOR id="cairo-
|
285
|
-
<ANCHOR id="cairo-
|
286
|
-
<ANCHOR id="
|
287
|
-
<ANCHOR id="cairo-
|
288
|
-
<ANCHOR id="cairo-
|
289
|
-
<ANCHOR id="cairo-
|
290
|
-
<ANCHOR id="cairo-
|
291
|
-
<ANCHOR id="cairo-
|
292
|
-
<ANCHOR id="cairo-
|
293
|
-
<ANCHOR id="cairo-
|
294
|
-
<ANCHOR id="cairo-
|
295
|
-
<ANCHOR id="cairo-
|
296
|
-
<ANCHOR id="cairo-
|
297
|
-
<ANCHOR id="
|
298
|
-
<ANCHOR id="cairo-
|
299
|
-
<ANCHOR id="cairo-
|
300
|
-
<ANCHOR id="cairo-
|
301
|
-
<ANCHOR id="cairo-
|
302
|
-
<ANCHOR id="cairo-
|
303
|
-
<ANCHOR id="cairo-
|
304
|
-
<ANCHOR id="cairo-
|
305
|
-
<ANCHOR id="
|
306
|
-
<ANCHOR id="cairo-
|
307
|
-
<ANCHOR id="cairo-
|
308
|
-
<ANCHOR id="cairo-
|
309
|
-
<ANCHOR id="cairo-
|
310
|
-
<ANCHOR id="cairo-
|
311
|
-
<ANCHOR id="cairo-
|
312
|
-
<ANCHOR id="cairo-
|
313
|
-
<ANCHOR id="cairo-
|
314
|
-
<ANCHOR id="cairo-
|
315
|
-
<ANCHOR id="cairo-
|
316
|
-
<ANCHOR id="cairo-
|
317
|
-
<ANCHOR id="cairo-
|
318
|
-
<ANCHOR id="cairo-
|
319
|
-
<ANCHOR id="cairo-
|
320
|
-
<ANCHOR id="cairo-
|
321
|
-
<ANCHOR id="cairo-
|
322
|
-
<ANCHOR id="cairo-
|
323
|
-
<ANCHOR id="cairo-
|
324
|
-
<ANCHOR id="cairo-
|
325
|
-
<ANCHOR id="cairo-
|
326
|
-
<ANCHOR id="cairo-
|
327
|
-
<ANCHOR id="cairo-
|
328
|
-
<ANCHOR id="cairo-
|
329
|
-
<ANCHOR id="cairo-
|
330
|
-
<ANCHOR id="
|
331
|
-
<ANCHOR id="
|
332
|
-
<ANCHOR id="
|
333
|
-
<ANCHOR id="CAIRO-
|
334
|
-
<ANCHOR id="
|
335
|
-
<ANCHOR id="
|
336
|
-
<ANCHOR id="cairo-
|
337
|
-
<ANCHOR id="cairo-
|
338
|
-
<ANCHOR id="cairo-
|
339
|
-
<ANCHOR id="cairo-
|
340
|
-
<ANCHOR id="cairo-
|
341
|
-
<ANCHOR id="cairo-
|
342
|
-
<ANCHOR id="cairo-
|
343
|
-
<ANCHOR id="cairo-
|
344
|
-
<ANCHOR id="cairo-
|
345
|
-
<ANCHOR id="cairo-
|
346
|
-
<ANCHOR id="cairo-
|
347
|
-
<ANCHOR id="
|
348
|
-
<ANCHOR id="CAIRO-
|
349
|
-
<ANCHOR id="
|
350
|
-
<ANCHOR id="
|
351
|
-
<ANCHOR id="cairo-
|
352
|
-
<ANCHOR id="cairo-
|
353
|
-
<ANCHOR id="
|
354
|
-
<ANCHOR id="
|
355
|
-
<ANCHOR id="
|
356
|
-
<ANCHOR id="cairo-
|
357
|
-
<ANCHOR id="
|
358
|
-
<ANCHOR id="cairo-
|
359
|
-
<ANCHOR id="cairo-
|
360
|
-
<ANCHOR id="cairo-
|
361
|
-
<ANCHOR id="cairo-surface-
|
362
|
-
<ANCHOR id="cairo-
|
363
|
-
<ANCHOR id="cairo-surface-
|
364
|
-
<ANCHOR id="cairo-
|
365
|
-
<ANCHOR id="cairo-
|
366
|
-
<ANCHOR id="cairo-
|
367
|
-
<ANCHOR id="cairo-
|
368
|
-
<ANCHOR id="cairo-
|
369
|
-
<ANCHOR id="
|
370
|
-
<ANCHOR id="cairo-
|
371
|
-
<ANCHOR id="cairo-
|
372
|
-
<ANCHOR id="cairo-
|
373
|
-
<ANCHOR id="
|
374
|
-
<ANCHOR id="
|
375
|
-
<ANCHOR id="
|
376
|
-
<ANCHOR id="
|
377
|
-
<ANCHOR id="
|
378
|
-
<ANCHOR id="
|
379
|
-
<ANCHOR id="
|
380
|
-
<ANCHOR id="
|
381
|
-
<ANCHOR id="
|
382
|
-
<ANCHOR id="
|
383
|
-
<ANCHOR id="
|
384
|
-
<ANCHOR id="
|
385
|
-
<ANCHOR id="
|
386
|
-
<ANCHOR id="
|
387
|
-
<ANCHOR id="CAIRO-
|
388
|
-
<ANCHOR id="
|
389
|
-
<ANCHOR id="
|
390
|
-
<ANCHOR id="
|
391
|
-
<ANCHOR id="
|
392
|
-
<ANCHOR id="
|
393
|
-
<ANCHOR id="
|
394
|
-
<ANCHOR id="
|
395
|
-
<ANCHOR id="
|
396
|
-
<ANCHOR id="
|
397
|
-
<ANCHOR id="cairo-
|
398
|
-
<ANCHOR id="cairo-
|
399
|
-
<ANCHOR id="
|
400
|
-
<ANCHOR id="cairo-
|
401
|
-
<ANCHOR id="cairo-
|
402
|
-
<ANCHOR id="cairo-
|
403
|
-
<ANCHOR id="cairo-
|
404
|
-
<ANCHOR id="cairo-
|
405
|
-
<ANCHOR id="cairo-
|
406
|
-
<ANCHOR id="cairo-
|
407
|
-
<ANCHOR id="cairo-
|
408
|
-
<ANCHOR id="cairo-
|
409
|
-
<ANCHOR id="cairo-
|
410
|
-
<ANCHOR id="cairo-
|
411
|
-
<ANCHOR id="CAIRO-HAS-
|
412
|
-
<ANCHOR id="cairo-
|
413
|
-
<ANCHOR id="
|
414
|
-
<ANCHOR id="
|
415
|
-
<ANCHOR id="
|
416
|
-
<ANCHOR id="
|
417
|
-
<ANCHOR id="
|
418
|
-
<ANCHOR id="
|
419
|
-
<ANCHOR id="cairo-
|
420
|
-
<ANCHOR id="
|
421
|
-
<ANCHOR id="cairo-
|
422
|
-
<ANCHOR id="cairo-
|
423
|
-
<ANCHOR id="cairo-
|
424
|
-
<ANCHOR id="cairo-
|
425
|
-
<ANCHOR id="cairo-
|
426
|
-
<ANCHOR id="cairo-
|
427
|
-
<ANCHOR id="cairo-
|
428
|
-
<ANCHOR id="cairo-
|
429
|
-
<ANCHOR id="cairo-
|
430
|
-
<ANCHOR id="cairo-
|
431
|
-
<ANCHOR id="cairo-
|
432
|
-
<ANCHOR id="
|
433
|
-
<ANCHOR id="cairo-
|
434
|
-
<ANCHOR id="cairo-
|
435
|
-
<ANCHOR id="cairo-
|
436
|
-
<ANCHOR id="cairo-
|
437
|
-
<ANCHOR id="
|
438
|
-
<ANCHOR id="
|
439
|
-
<ANCHOR id="cairo-
|
440
|
-
<ANCHOR id="cairo-
|
441
|
-
<ANCHOR id="cairo-
|
442
|
-
<ANCHOR id="cairo-
|
443
|
-
<ANCHOR id="cairo-
|
444
|
-
<ANCHOR id="cairo-
|
445
|
-
<ANCHOR id="cairo-
|
446
|
-
<ANCHOR id="cairo-
|
447
|
-
<ANCHOR id="
|
448
|
-
<ANCHOR id="cairo-
|
449
|
-
<ANCHOR id="cairo-
|
450
|
-
<ANCHOR id="cairo-
|
451
|
-
<ANCHOR id="cairo-
|
452
|
-
<ANCHOR id="cairo-
|
453
|
-
<ANCHOR id="cairo-
|
454
|
-
<ANCHOR id="cairo-
|
455
|
-
<ANCHOR id="cairo-
|
456
|
-
<ANCHOR id="cairo-
|
457
|
-
<ANCHOR id="cairo-
|
458
|
-
<ANCHOR id="cairo-
|
459
|
-
<ANCHOR id="
|
460
|
-
<ANCHOR id="cairo-
|
461
|
-
<ANCHOR id="cairo-
|
462
|
-
<ANCHOR id="cairo-
|
463
|
-
<ANCHOR id="
|
464
|
-
<ANCHOR id="CAIRO-
|
465
|
-
<ANCHOR id="CAIRO-
|
466
|
-
<ANCHOR id="
|
467
|
-
<ANCHOR id="
|
468
|
-
<ANCHOR id="
|
469
|
-
<ANCHOR id="
|
470
|
-
<ANCHOR id="cairo-
|
471
|
-
<ANCHOR id="cairo-
|
472
|
-
<ANCHOR id="cairo-
|
473
|
-
<ANCHOR id="cairo-
|
474
|
-
<ANCHOR id="cairo-
|
475
|
-
<ANCHOR id="cairo-
|
476
|
-
<ANCHOR id="cairo-
|
477
|
-
<ANCHOR id="cairo-
|
478
|
-
<ANCHOR id="cairo-
|
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">
|