cairo 1.14.0-x64-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.
- checksums.yaml +7 -0
- data/AUTHORS +7 -0
- data/COPYING +59 -0
- data/GPL +340 -0
- data/Gemfile +5 -0
- data/NEWS +429 -0
- data/README.rdoc +120 -0
- data/Rakefile +620 -0
- data/ext/cairo/cairo.def +140 -0
- data/ext/cairo/depend +3 -0
- data/ext/cairo/extconf.rb +202 -0
- data/ext/cairo/rb_cairo.c +111 -0
- data/ext/cairo/rb_cairo.h +348 -0
- data/ext/cairo/rb_cairo_constants.c +673 -0
- data/ext/cairo/rb_cairo_context.c +1741 -0
- data/ext/cairo/rb_cairo_device.c +475 -0
- data/ext/cairo/rb_cairo_exception.c +446 -0
- data/ext/cairo/rb_cairo_font_extents.c +200 -0
- data/ext/cairo/rb_cairo_font_face.c +726 -0
- data/ext/cairo/rb_cairo_font_options.c +197 -0
- data/ext/cairo/rb_cairo_glyph.c +161 -0
- 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 +366 -0
- data/ext/cairo/rb_cairo_path.c +459 -0
- data/ext/cairo/rb_cairo_pattern.c +1192 -0
- data/ext/cairo/rb_cairo_private.c +255 -0
- data/ext/cairo/rb_cairo_private.h +129 -0
- data/ext/cairo/rb_cairo_rectangle.c +83 -0
- data/ext/cairo/rb_cairo_region.c +385 -0
- data/ext/cairo/rb_cairo_scaled_font.c +235 -0
- data/ext/cairo/rb_cairo_surface.c +2284 -0
- data/ext/cairo/rb_cairo_text_cluster.c +151 -0
- data/ext/cairo/rb_cairo_text_extents.c +221 -0
- data/lib/2.0/cairo.so +0 -0
- data/lib/2.1/cairo.so +0 -0
- data/lib/2.2/cairo.so +0 -0
- data/lib/cairo.rb +154 -0
- data/lib/cairo/color.rb +267 -0
- data/lib/cairo/colors.rb +656 -0
- data/lib/cairo/constants.rb +24 -0
- data/lib/cairo/context.rb +29 -0
- data/lib/cairo/context/blur.rb +45 -0
- data/lib/cairo/context/circle.rb +9 -0
- data/lib/cairo/context/color.rb +11 -0
- data/lib/cairo/context/path.rb +117 -0
- data/lib/cairo/context/rectangle.rb +33 -0
- data/lib/cairo/context/triangle.rb +12 -0
- data/lib/cairo/device.rb +13 -0
- data/lib/cairo/paper.rb +183 -0
- data/lib/cairo/papers.rb +65 -0
- data/lib/cairo/path.rb +15 -0
- data/lib/cairo/pattern.rb +12 -0
- data/lib/cairo/point.rb +7 -0
- data/lib/cairo/surface.rb +13 -0
- data/samples/agg/aa_test.rb +304 -0
- data/samples/blur.rb +46 -0
- data/samples/pac-nomralize.rb +170 -0
- data/samples/pac-tee.rb +170 -0
- data/samples/pac.rb +98 -0
- data/samples/png.rb +44 -0
- data/samples/scalable.rb +55 -0
- data/samples/text-on-path.rb +59 -0
- data/samples/text2.rb +130 -0
- data/test/cairo-test-utils.rb +44 -0
- data/test/run-test.rb +29 -0
- data/test/test_color.rb +17 -0
- data/test/test_constants.rb +27 -0
- data/test/test_context.rb +105 -0
- data/test/test_exception.rb +36 -0
- data/test/test_font_extents.rb +36 -0
- data/test/test_font_face.rb +257 -0
- data/test/test_font_options.rb +13 -0
- data/test/test_image_surface.rb +28 -0
- data/test/test_paper.rb +81 -0
- data/test/test_quartz_image_surface.rb +13 -0
- data/test/test_raster_source_pattern.rb +162 -0
- data/test/test_recording_surface.rb +19 -0
- data/test/test_region.rb +102 -0
- data/test/test_scaled_font.rb +34 -0
- data/test/test_script_device.rb +46 -0
- data/test/test_script_surface.rb +13 -0
- data/test/test_surface.rb +61 -0
- data/test/test_tee_surface.rb +32 -0
- data/test/test_text_cluster.rb +32 -0
- data/test/test_text_extents.rb +40 -0
- data/test/test_text_to_glyphs_data.rb +51 -0
- data/test/test_xml_device.rb +22 -0
- data/test/test_xml_surface.rb +34 -0
- data/vendor/local/bin/fc-cache.exe +0 -0
- data/vendor/local/bin/fc-cat.exe +0 -0
- data/vendor/local/bin/fc-list.exe +0 -0
- data/vendor/local/bin/fc-match.exe +0 -0
- data/vendor/local/bin/fc-pattern.exe +0 -0
- data/vendor/local/bin/fc-query.exe +0 -0
- data/vendor/local/bin/fc-scan.exe +0 -0
- data/vendor/local/bin/fc-validate.exe +0 -0
- data/vendor/local/bin/freetype-config +163 -0
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
- data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
- data/vendor/local/bin/libfontconfig-1.dll +0 -0
- data/vendor/local/bin/libfreetype-6.dll +0 -0
- data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
- data/vendor/local/bin/libpixman-1-0.dll +0 -0
- data/vendor/local/bin/libpng-config +127 -0
- data/vendor/local/bin/libpng16-16.dll +0 -0
- data/vendor/local/bin/libpng16-config +127 -0
- data/vendor/local/bin/libstdc++-6.dll +0 -0
- data/vendor/local/bin/libwinpthread-1.dll +0 -0
- data/vendor/local/bin/libxml2-2.dll +0 -0
- data/vendor/local/bin/png-fix-itxt.exe +0 -0
- data/vendor/local/bin/pngfix.exe +0 -0
- data/vendor/local/bin/xml2-config +106 -0
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/fonts/conf.d/10-scale-bitmap-fonts.conf +81 -0
- data/vendor/local/etc/fonts/conf.d/20-unhint-small-vera.conf +48 -0
- data/vendor/local/etc/fonts/conf.d/30-metric-aliases.conf +546 -0
- data/vendor/local/etc/fonts/conf.d/30-urw-aliases.conf +24 -0
- data/vendor/local/etc/fonts/conf.d/40-nonlatin.conf +231 -0
- data/vendor/local/etc/fonts/conf.d/45-latin.conf +189 -0
- data/vendor/local/etc/fonts/conf.d/49-sansserif.conf +21 -0
- data/vendor/local/etc/fonts/conf.d/50-user.conf +15 -0
- data/vendor/local/etc/fonts/conf.d/51-local.conf +6 -0
- data/vendor/local/etc/fonts/conf.d/60-latin.conf +70 -0
- data/vendor/local/etc/fonts/conf.d/65-fonts-persian.conf +419 -0
- data/vendor/local/etc/fonts/conf.d/65-nonlatin.conf +196 -0
- data/vendor/local/etc/fonts/conf.d/69-unifont.conf +28 -0
- data/vendor/local/etc/fonts/conf.d/80-delicious.conf +19 -0
- data/vendor/local/etc/fonts/conf.d/90-synthetic.conf +64 -0
- data/vendor/local/etc/fonts/conf.d/README +23 -0
- data/vendor/local/etc/fonts/fonts.conf +155 -0
- data/vendor/local/include/cairo/cairo-deprecated.h +123 -0
- data/vendor/local/include/cairo/cairo-features.h +31 -0
- data/vendor/local/include/cairo/cairo-ft.h +118 -0
- data/vendor/local/include/cairo/cairo-gobject.h +192 -0
- data/vendor/local/include/cairo/cairo-pdf.h +94 -0
- data/vendor/local/include/cairo/cairo-ps.h +116 -0
- data/vendor/local/include/cairo/cairo-script-interpreter.h +124 -0
- data/vendor/local/include/cairo/cairo-script.h +98 -0
- data/vendor/local/include/cairo/cairo-svg.h +84 -0
- data/vendor/local/include/cairo/cairo-version.h +8 -0
- data/vendor/local/include/cairo/cairo-win32.h +112 -0
- data/vendor/local/include/cairo/cairo.h +3153 -0
- data/vendor/local/include/fontconfig/fcfreetype.h +59 -0
- data/vendor/local/include/fontconfig/fcprivate.h +124 -0
- data/vendor/local/include/fontconfig/fontconfig.h +1010 -0
- data/vendor/local/include/freetype2/config/ftconfig.h +706 -0
- data/vendor/local/include/freetype2/config/ftheader.h +832 -0
- data/vendor/local/include/freetype2/config/ftmodule.h +20 -0
- data/vendor/local/include/freetype2/config/ftoption.h +846 -0
- data/vendor/local/include/freetype2/config/ftstdlib.h +174 -0
- data/vendor/local/include/freetype2/freetype.h +4076 -0
- data/vendor/local/include/freetype2/ft2build.h +42 -0
- data/vendor/local/include/freetype2/ftadvanc.h +182 -0
- data/vendor/local/include/freetype2/ftautoh.h +402 -0
- data/vendor/local/include/freetype2/ftbbox.h +102 -0
- data/vendor/local/include/freetype2/ftbdf.h +210 -0
- data/vendor/local/include/freetype2/ftbitmap.h +227 -0
- data/vendor/local/include/freetype2/ftbzip2.h +102 -0
- data/vendor/local/include/freetype2/ftcache.h +1057 -0
- data/vendor/local/include/freetype2/ftcffdrv.h +254 -0
- data/vendor/local/include/freetype2/ftchapters.h +121 -0
- data/vendor/local/include/freetype2/ftcid.h +166 -0
- data/vendor/local/include/freetype2/fterrdef.h +249 -0
- data/vendor/local/include/freetype2/fterrors.h +198 -0
- data/vendor/local/include/freetype2/ftgasp.h +128 -0
- data/vendor/local/include/freetype2/ftglyph.h +620 -0
- data/vendor/local/include/freetype2/ftgxval.h +358 -0
- data/vendor/local/include/freetype2/ftgzip.h +149 -0
- data/vendor/local/include/freetype2/ftimage.h +1322 -0
- data/vendor/local/include/freetype2/ftincrem.h +353 -0
- data/vendor/local/include/freetype2/ftlcdfil.h +251 -0
- data/vendor/local/include/freetype2/ftlist.h +277 -0
- data/vendor/local/include/freetype2/ftlzw.h +99 -0
- data/vendor/local/include/freetype2/ftmac.h +274 -0
- data/vendor/local/include/freetype2/ftmm.h +377 -0
- data/vendor/local/include/freetype2/ftmodapi.h +641 -0
- data/vendor/local/include/freetype2/ftmoderr.h +194 -0
- data/vendor/local/include/freetype2/ftotval.h +203 -0
- data/vendor/local/include/freetype2/ftoutln.h +572 -0
- data/vendor/local/include/freetype2/ftpfr.h +172 -0
- data/vendor/local/include/freetype2/ftrender.h +238 -0
- data/vendor/local/include/freetype2/ftsizes.h +159 -0
- data/vendor/local/include/freetype2/ftsnames.h +200 -0
- data/vendor/local/include/freetype2/ftstroke.h +751 -0
- data/vendor/local/include/freetype2/ftsynth.h +81 -0
- data/vendor/local/include/freetype2/ftsystem.h +347 -0
- data/vendor/local/include/freetype2/fttrigon.h +350 -0
- data/vendor/local/include/freetype2/ftttdrv.h +170 -0
- data/vendor/local/include/freetype2/fttypes.h +598 -0
- data/vendor/local/include/freetype2/ftwinfnt.h +275 -0
- data/vendor/local/include/freetype2/ftxf86.h +83 -0
- data/vendor/local/include/freetype2/t1tables.h +662 -0
- data/vendor/local/include/freetype2/ttnameid.h +1237 -0
- data/vendor/local/include/freetype2/tttables.h +787 -0
- data/vendor/local/include/freetype2/tttags.h +111 -0
- data/vendor/local/include/freetype2/ttunpat.h +59 -0
- data/vendor/local/include/libpng16/png.h +3276 -0
- data/vendor/local/include/libpng16/pngconf.h +644 -0
- data/vendor/local/include/libpng16/pnglibconf.h +208 -0
- data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
- data/vendor/local/include/libxml2/libxml/HTMLparser.h +306 -0
- data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
- data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
- data/vendor/local/include/libxml2/libxml/SAX2.h +178 -0
- data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
- data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
- data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
- data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
- data/vendor/local/include/libxml2/libxml/dict.h +80 -0
- data/vendor/local/include/libxml2/libxml/encoding.h +240 -0
- data/vendor/local/include/libxml2/libxml/entities.h +151 -0
- data/vendor/local/include/libxml2/libxml/globals.h +509 -0
- data/vendor/local/include/libxml2/libxml/hash.h +233 -0
- data/vendor/local/include/libxml2/libxml/list.h +137 -0
- data/vendor/local/include/libxml2/libxml/nanoftp.h +163 -0
- data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
- data/vendor/local/include/libxml2/libxml/parser.h +1241 -0
- data/vendor/local/include/libxml2/libxml/parserInternals.h +644 -0
- data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
- data/vendor/local/include/libxml2/libxml/relaxng.h +217 -0
- data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
- data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
- data/vendor/local/include/libxml2/libxml/threads.h +84 -0
- data/vendor/local/include/libxml2/libxml/tree.h +1310 -0
- data/vendor/local/include/libxml2/libxml/uri.h +94 -0
- data/vendor/local/include/libxml2/libxml/valid.h +458 -0
- data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
- data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
- data/vendor/local/include/libxml2/libxml/xmlIO.h +366 -0
- data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
- data/vendor/local/include/libxml2/libxml/xmlerror.h +945 -0
- data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
- data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
- data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
- data/vendor/local/include/libxml2/libxml/xmlreader.h +428 -0
- data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
- data/vendor/local/include/libxml2/libxml/xmlsave.h +88 -0
- data/vendor/local/include/libxml2/libxml/xmlschemas.h +246 -0
- data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
- data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
- data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
- data/vendor/local/include/libxml2/libxml/xmlversion.h +489 -0
- data/vendor/local/include/libxml2/libxml/xmlwriter.h +488 -0
- data/vendor/local/include/libxml2/libxml/xpath.h +557 -0
- data/vendor/local/include/libxml2/libxml/xpathInternals.h +632 -0
- data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
- data/vendor/local/include/pixman-1/pixman-version.h +50 -0
- data/vendor/local/include/pixman-1/pixman.h +1111 -0
- data/vendor/local/include/png.h +3276 -0
- data/vendor/local/include/pngconf.h +644 -0
- data/vendor/local/include/pnglibconf.h +208 -0
- data/vendor/local/include/zconf.h +511 -0
- data/vendor/local/include/zlib.h +1768 -0
- data/vendor/local/lib/cmake/libxml2/libxml2-config.cmake +50 -0
- data/vendor/local/lib/fontconfig.def +207 -0
- data/vendor/local/lib/libcairo-gobject.a +0 -0
- data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
- data/vendor/local/lib/libcairo-gobject.la +41 -0
- data/vendor/local/lib/libcairo-script-interpreter.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.la +41 -0
- data/vendor/local/lib/libcairo.a +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/libcairo.la +41 -0
- data/vendor/local/lib/libfontconfig.dll.a +0 -0
- data/vendor/local/lib/libfontconfig.la +41 -0
- data/vendor/local/lib/libfreetype.a +0 -0
- data/vendor/local/lib/libfreetype.dll.a +0 -0
- data/vendor/local/lib/libfreetype.la +41 -0
- data/vendor/local/lib/libpixman-1.a +0 -0
- data/vendor/local/lib/libpixman-1.dll.a +0 -0
- data/vendor/local/lib/libpixman-1.la +41 -0
- data/vendor/local/lib/libpng.a +0 -0
- data/vendor/local/lib/libpng.dll.a +0 -0
- data/vendor/local/lib/libpng.la +41 -0
- data/vendor/local/lib/libpng16.a +0 -0
- data/vendor/local/lib/libpng16.dll.a +0 -0
- data/vendor/local/lib/libpng16.la +41 -0
- data/vendor/local/lib/libxml2.a +0 -0
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libxml2.la +41 -0
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-png.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-script.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo.pc +13 -0
- data/vendor/local/lib/pkgconfig/fontconfig.pc +18 -0
- data/vendor/local/lib/pkgconfig/freetype2.pc +14 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +11 -0
- data/vendor/local/lib/pkgconfig/libpng16.pc +11 -0
- data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/pixman-1.pc +11 -0
- data/vendor/local/lib/pkgconfig/zlib.pc +13 -0
- data/vendor/local/lib/xml2Conf.sh +8 -0
- data/vendor/local/share/aclocal/freetype2.m4 +194 -0
- data/vendor/local/share/aclocal/libxml.m4 +188 -0
- data/vendor/local/share/doc/libxml2-2.9.2/Copyright +23 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/testHTML.c +880 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/testSAX.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/testXPath.c +229 -0
- data/vendor/local/share/doc/libxml2-2.9.2/examples/xmllint.c +3801 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/DOM.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/FAQ.html +299 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/Libxml2-Logo-180x168.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/Libxml2-Logo-90x34.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/encoding.html +217 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/examples.xml +751 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/examples.xsl +174 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/book1.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/index.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/left.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-DOCBparser.html +51 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-HTMLparser.html +184 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-HTMLtree.html +73 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-SAX.html +125 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-SAX2.html +128 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-c14n.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-catalog.html +142 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-chvalid.html +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-debugXML.html +120 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-dict.html +58 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-encoding.html +124 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-entities.html +79 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-globals.html +152 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-hash.html +116 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-lib.html +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-list.html +120 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-nanoftp.html +94 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-nanohttp.html +65 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-parser.html +559 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-parserInternals.html +322 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-pattern.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-relaxng.html +162 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-schemasInternals.html +373 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-schematron.html +81 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-threads.html +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-tree.html +990 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-uri.html +73 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-valid.html +289 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xinclude.html +59 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xlink.html +82 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlIO.html +212 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlautomata.html +85 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlerror.html +865 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlexports.html +20 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlmemory.html +107 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlmodule.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlreader.html +330 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlregexp.html +143 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlsave.html +60 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlschemas.html +185 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlschemastypes.html +123 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlstring.html +108 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlunicode.html +512 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlversion.html +63 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xmlwriter.html +261 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpath.html +316 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpathInternals.html +394 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xpointer.html +83 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/libxml-xzlib.html +16 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/right.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/html/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io1.c +166 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io2.c +58 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/io2.res +2 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/libxml.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse1.c +56 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse2.c +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse3.c +60 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/parse4.c +143 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader1.c +107 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader1.res +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader2.c +122 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader3.c +120 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader3.res +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader4.c +122 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/reader4.res +3 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/redhat.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/smallfootonly.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/structure.gif +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/test1.xml +1 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/test2.xml +13 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/test3.xml +39 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/testWriter.c +1198 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree1.c +94 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree1.res +4 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree2.c +118 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tree2.res +18 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tst.xml +7 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apa.html +8 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apb.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apc.html +82 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apd.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ape.html +78 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apf.html +67 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/apg.html +75 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/aph.html +76 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/api.html +4 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s02.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s03.html +47 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s04.html +54 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s05.html +55 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s06.html +35 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s07.html +30 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s08.html +38 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ar01s09.html +63 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/1.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/10.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/2.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/3.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/4.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/5.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/6.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/7.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/8.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/callouts/9.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/caution.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/draft.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/home.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/important.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/next.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/note.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/prev.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/tip.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-blank.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-minus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/toc-plus.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/up.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/images/warning.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeaddattribute.c +64 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeaddkeyword.c +75 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includeconvert.c +73 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includegetattribute.c +72 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includekeyword.c +79 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/includexpath.c +74 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/index.html +14 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/ix01.html +1 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/tutorial/xmltutorial.pdf +1336 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/w3c.png +0 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/writer.xml +2 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xml.html +5995 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath1.c +250 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath1.res +5 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath2.c +190 -0
- data/vendor/local/share/doc/libxml2-2.9.2/html/xpath2.res +30 -0
- data/vendor/local/share/fontconfig/conf.avail/10-autohint.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-no-sub-pixel.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf +81 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/10-unhinted.conf +14 -0
- data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-default.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/11-lcdfilter-light.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/20-unhint-small-vera.conf +48 -0
- data/vendor/local/share/fontconfig/conf.avail/25-unhint-nonlatin.conf +128 -0
- data/vendor/local/share/fontconfig/conf.avail/30-metric-aliases.conf +546 -0
- data/vendor/local/share/fontconfig/conf.avail/30-urw-aliases.conf +24 -0
- data/vendor/local/share/fontconfig/conf.avail/40-nonlatin.conf +231 -0
- data/vendor/local/share/fontconfig/conf.avail/45-latin.conf +189 -0
- data/vendor/local/share/fontconfig/conf.avail/49-sansserif.conf +21 -0
- data/vendor/local/share/fontconfig/conf.avail/50-user.conf +15 -0
- data/vendor/local/share/fontconfig/conf.avail/51-local.conf +6 -0
- data/vendor/local/share/fontconfig/conf.avail/60-latin.conf +70 -0
- data/vendor/local/share/fontconfig/conf.avail/65-fonts-persian.conf +419 -0
- data/vendor/local/share/fontconfig/conf.avail/65-khmer.conf +16 -0
- data/vendor/local/share/fontconfig/conf.avail/65-nonlatin.conf +196 -0
- data/vendor/local/share/fontconfig/conf.avail/69-unifont.conf +28 -0
- data/vendor/local/share/fontconfig/conf.avail/70-no-bitmaps.conf +12 -0
- data/vendor/local/share/fontconfig/conf.avail/70-yes-bitmaps.conf +12 -0
- data/vendor/local/share/fontconfig/conf.avail/80-delicious.conf +19 -0
- data/vendor/local/share/fontconfig/conf.avail/90-synthetic.conf +64 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +122 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +53 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +123 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +121 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +117 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +75 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +120 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +92 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +93 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +397 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +428 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +452 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +342 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +315 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1194 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +577 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +129 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +197 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html +600 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +226 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +810 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +302 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Script-Surfaces.html +360 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +394 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +156 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +677 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +342 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +326 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +280 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XCB-Surfaces.html +527 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +535 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html +170 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +636 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +380 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +653 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +559 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +2231 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +956 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1637 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2695 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +53 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +53 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +44 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +74 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +1138 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +747 -0
- data/vendor/local/share/gtk-doc/html/cairo/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +177 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.12.html +193 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +179 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +123 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +107 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +128 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +1122 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.html +157 -0
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +833 -0
- data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +73 -0
- data/vendor/local/share/gtk-doc/html/cairo/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/cairo/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
- data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
- data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +373 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +134 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +218 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +187 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +766 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +688 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1597 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +347 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +953 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +565 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +133 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +314 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +292 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +479 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +542 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3573 -0
- data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
- data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
- data/vendor/local/share/license/cairo/AUTHORS +115 -0
- data/vendor/local/share/license/cairo/COPYING +33 -0
- data/vendor/local/share/license/cairo/COPYING-LGPL-2.1 +510 -0
- data/vendor/local/share/license/cairo/COPYING-MPL-1.1 +470 -0
- data/vendor/local/share/license/cairo/README +204 -0
- data/vendor/local/share/license/cairo/README.win32 +66 -0
- data/vendor/local/share/license/fontconfig/AUTHORS +3 -0
- data/vendor/local/share/license/fontconfig/COPYING +28 -0
- data/vendor/local/share/license/fontconfig/README +1484 -0
- data/vendor/local/share/license/freetype/README +83 -0
- data/vendor/local/share/license/freetype/README.git +50 -0
- data/vendor/local/share/license/libpng/README +215 -0
- data/vendor/local/share/license/libxml2/AUTHORS +5 -0
- data/vendor/local/share/license/libxml2/COPYING +23 -0
- data/vendor/local/share/license/libxml2/README +39 -0
- data/vendor/local/share/license/libxml2/README.tests +39 -0
- data/vendor/local/share/license/pixman/AUTHORS +0 -0
- data/vendor/local/share/license/pixman/COPYING +42 -0
- data/vendor/local/share/license/pixman/README +116 -0
- data/vendor/local/share/license/zlib/README +115 -0
- data/vendor/local/share/man/man1/freetype-config.1 +108 -0
- data/vendor/local/share/man/man1/xml2-config.1 +30 -0
- data/vendor/local/share/man/man1/xmlcatalog.1 +340 -0
- data/vendor/local/share/man/man1/xmllint.1 +647 -0
- data/vendor/local/share/man/man3/libpng.3 +6217 -0
- data/vendor/local/share/man/man3/libpngpf.3 +18 -0
- data/vendor/local/share/man/man3/libxml.3 +71 -0
- data/vendor/local/share/man/man5/png.5 +74 -0
- data/vendor/local/share/xml/fontconfig/fonts.dtd +233 -0
- metadata +774 -0
@@ -0,0 +1,157 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>Cairo: A Vector Graphics Library</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
|
7
|
+
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
|
+
<link rel="next" href="cairo-drawing.html" title="Drawing">
|
9
|
+
<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
|
10
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
11
|
+
</head>
|
12
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
13
|
+
<div lang="en" class="book">
|
14
|
+
<div class="titlepage">
|
15
|
+
<div>
|
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>
|
17
|
+
<div><p class="releaseinfo">for Cairo 1.14.0
|
18
|
+
</p></div>
|
19
|
+
</div>
|
20
|
+
<hr>
|
21
|
+
</div>
|
22
|
+
<div class="toc"><dl>
|
23
|
+
<dt><span class="chapter"><a href="cairo-drawing.html">Drawing</a></span></dt>
|
24
|
+
<dd><dl>
|
25
|
+
<dt>
|
26
|
+
<span class="refentrytitle"><a href="cairo-cairo-t.html">cairo_t</a></span><span class="refpurpose"> — The cairo drawing context</span>
|
27
|
+
</dt>
|
28
|
+
<dt>
|
29
|
+
<span class="refentrytitle"><a href="cairo-Paths.html">Paths</a></span><span class="refpurpose"> — Creating paths and manipulating path data</span>
|
30
|
+
</dt>
|
31
|
+
<dt>
|
32
|
+
<span class="refentrytitle"><a href="cairo-cairo-pattern-t.html">cairo_pattern_t</a></span><span class="refpurpose"> — Sources for drawing</span>
|
33
|
+
</dt>
|
34
|
+
<dt>
|
35
|
+
<span class="refentrytitle"><a href="cairo-Regions.html">Regions</a></span><span class="refpurpose"> — Representing a pixel-aligned area</span>
|
36
|
+
</dt>
|
37
|
+
<dt>
|
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>
|
42
|
+
</dt>
|
43
|
+
<dt>
|
44
|
+
<span class="refentrytitle"><a href="cairo-Raster-Sources.html">Raster Sources</a></span><span class="refpurpose"> — Supplying arbitrary image data</span>
|
45
|
+
</dt>
|
46
|
+
</dl></dd>
|
47
|
+
<dt><span class="chapter"><a href="cairo-fonts.html">Fonts</a></span></dt>
|
48
|
+
<dd><dl>
|
49
|
+
<dt>
|
50
|
+
<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>
|
51
|
+
</dt>
|
52
|
+
<dt>
|
53
|
+
<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>
|
54
|
+
</dt>
|
55
|
+
<dt>
|
56
|
+
<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>
|
57
|
+
</dt>
|
58
|
+
<dt>
|
59
|
+
<span class="refentrytitle"><a href="cairo-FreeType-Fonts.html">FreeType Fonts</a></span><span class="refpurpose"> — Font support for FreeType</span>
|
60
|
+
</dt>
|
61
|
+
<dt>
|
62
|
+
<span class="refentrytitle"><a href="cairo-Win32-Fonts.html">Win32 Fonts</a></span><span class="refpurpose"> — Font support for Microsoft Windows</span>
|
63
|
+
</dt>
|
64
|
+
<dt>
|
65
|
+
<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>
|
66
|
+
</dt>
|
67
|
+
<dt>
|
68
|
+
<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>
|
69
|
+
</dt>
|
70
|
+
</dl></dd>
|
71
|
+
<dt><span class="chapter"><a href="cairo-surfaces.html">Surfaces</a></span></dt>
|
72
|
+
<dd><dl>
|
73
|
+
<dt>
|
74
|
+
<span class="refentrytitle"><a href="cairo-cairo-device-t.html">cairo_device_t</a></span><span class="refpurpose"> — interface to underlying rendering system</span>
|
75
|
+
</dt>
|
76
|
+
<dt>
|
77
|
+
<span class="refentrytitle"><a href="cairo-cairo-surface-t.html">cairo_surface_t</a></span><span class="refpurpose"> — Base class for surfaces</span>
|
78
|
+
</dt>
|
79
|
+
<dt>
|
80
|
+
<span class="refentrytitle"><a href="cairo-Image-Surfaces.html">Image Surfaces</a></span><span class="refpurpose"> — Rendering to memory buffers</span>
|
81
|
+
</dt>
|
82
|
+
<dt>
|
83
|
+
<span class="refentrytitle"><a href="cairo-PDF-Surfaces.html">PDF Surfaces</a></span><span class="refpurpose"> — Rendering PDF documents</span>
|
84
|
+
</dt>
|
85
|
+
<dt>
|
86
|
+
<span class="refentrytitle"><a href="cairo-PNG-Support.html">PNG Support</a></span><span class="refpurpose"> — Reading and writing PNG images</span>
|
87
|
+
</dt>
|
88
|
+
<dt>
|
89
|
+
<span class="refentrytitle"><a href="cairo-PostScript-Surfaces.html">PostScript Surfaces</a></span><span class="refpurpose"> — Rendering PostScript documents</span>
|
90
|
+
</dt>
|
91
|
+
<dt>
|
92
|
+
<span class="refentrytitle"><a href="cairo-Recording-Surfaces.html">Recording Surfaces</a></span><span class="refpurpose"> — Records all drawing operations</span>
|
93
|
+
</dt>
|
94
|
+
<dt>
|
95
|
+
<span class="refentrytitle"><a href="cairo-Win32-Surfaces.html">Win32 Surfaces</a></span><span class="refpurpose"> — Microsoft Windows surface support</span>
|
96
|
+
</dt>
|
97
|
+
<dt>
|
98
|
+
<span class="refentrytitle"><a href="cairo-SVG-Surfaces.html">SVG Surfaces</a></span><span class="refpurpose"> — Rendering SVG documents</span>
|
99
|
+
</dt>
|
100
|
+
<dt>
|
101
|
+
<span class="refentrytitle"><a href="cairo-Quartz-Surfaces.html">Quartz Surfaces</a></span><span class="refpurpose"> — Rendering to Quartz surfaces</span>
|
102
|
+
</dt>
|
103
|
+
<dt>
|
104
|
+
<span class="refentrytitle"><a href="cairo-XCB-Surfaces.html">XCB Surfaces</a></span><span class="refpurpose"> — X Window System rendering using the XCB library</span>
|
105
|
+
</dt>
|
106
|
+
<dt>
|
107
|
+
<span class="refentrytitle"><a href="cairo-XLib-Surfaces.html">XLib Surfaces</a></span><span class="refpurpose"> — X Window System rendering using XLib</span>
|
108
|
+
</dt>
|
109
|
+
<dt>
|
110
|
+
<span class="refentrytitle"><a href="cairo-XLib-XRender-Backend.html">XLib-XRender Backend</a></span><span class="refpurpose"> — X Window System rendering using XLib and the X Render extension</span>
|
111
|
+
</dt>
|
112
|
+
<dt>
|
113
|
+
<span class="refentrytitle"><a href="cairo-Script-Surfaces.html">Script Surfaces</a></span><span class="refpurpose"> — Rendering to replayable scripts</span>
|
114
|
+
</dt>
|
115
|
+
</dl></dd>
|
116
|
+
<dt><span class="chapter"><a href="cairo-support.html">Utilities</a></span></dt>
|
117
|
+
<dd><dl>
|
118
|
+
<dt>
|
119
|
+
<span class="refentrytitle"><a href="cairo-cairo-matrix-t.html">cairo_matrix_t</a></span><span class="refpurpose"> — Generic matrix operations</span>
|
120
|
+
</dt>
|
121
|
+
<dt>
|
122
|
+
<span class="refentrytitle"><a href="cairo-Error-handling.html">Error handling</a></span><span class="refpurpose"> — Decoding cairo's status</span>
|
123
|
+
</dt>
|
124
|
+
<dt>
|
125
|
+
<span class="refentrytitle"><a href="cairo-Version-Information.html">Version Information</a></span><span class="refpurpose"> — Compile-time and run-time version checks.</span>
|
126
|
+
</dt>
|
127
|
+
<dt>
|
128
|
+
<span class="refentrytitle"><a href="cairo-Types.html">Types</a></span><span class="refpurpose"> — Generic data types</span>
|
129
|
+
</dt>
|
130
|
+
</dl></dd>
|
131
|
+
<dt><span class="index"><a href="index-all.html">Index</a></span></dt>
|
132
|
+
<dt><span class="index"><a href="index-1.2.html">Index of new symbols in 1.2</a></span></dt>
|
133
|
+
<dt><span class="index"><a href="index-1.4.html">Index of new symbols in 1.4</a></span></dt>
|
134
|
+
<dt><span class="index"><a href="index-1.6.html">Index of new symbols in 1.6</a></span></dt>
|
135
|
+
<dt><span class="index"><a href="index-1.8.html">Index of new symbols in 1.8</a></span></dt>
|
136
|
+
<dt><span class="index"><a href="index-1.10.html">Index of new symbols in 1.10</a></span></dt>
|
137
|
+
<dt><span class="index"><a href="index-1.12.html">Index of new symbols in 1.12</a></span></dt>
|
138
|
+
<dt><span class="appendix"><a href="language-bindings.html">A. Creating a language binding for cairo</a></span></dt>
|
139
|
+
<dd><dl>
|
140
|
+
<dt><span class="sect1"><a href="language-bindings.html#bindings-general">General considerations</a></span></dt>
|
141
|
+
<dt><span class="sect1"><a href="bindings-memory.html">Memory management</a></span></dt>
|
142
|
+
<dt><span class="sect1"><a href="bindings-return-values.html">Multiple return values</a></span></dt>
|
143
|
+
<dt><span class="sect1"><a href="bindings-overloading.html">Overloading and optional arguments</a></span></dt>
|
144
|
+
<dt><span class="sect1"><a href="bindings-streams.html">Streams and File I/O</a></span></dt>
|
145
|
+
<dt><span class="sect1"><a href="bindings-errors.html">Error handling</a></span></dt>
|
146
|
+
<dt><span class="sect1"><a href="bindings-patterns.html">Patterns</a></span></dt>
|
147
|
+
<dt><span class="sect1"><a href="bindings-surfaces.html">Surfaces</a></span></dt>
|
148
|
+
<dt><span class="sect1"><a href="bindings-fonts.html">Fonts</a></span></dt>
|
149
|
+
<dt><span class="sect1"><a href="bindings-path.html">cairo_path_t</a></span></dt>
|
150
|
+
</dl></dd>
|
151
|
+
</dl></div>
|
152
|
+
</div>
|
153
|
+
<div class="footer">
|
154
|
+
<hr>
|
155
|
+
Generated by GTK-Doc V1.18</div>
|
156
|
+
</body>
|
157
|
+
</html>
|
@@ -0,0 +1,833 @@
|
|
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-ANTIALIAS-FAST:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-ANTIALIAS-FAST:CAPS">
|
29
|
+
<ANCHOR id="CAIRO-ANTIALIAS-GOOD:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-ANTIALIAS-GOOD:CAPS">
|
30
|
+
<ANCHOR id="CAIRO-ANTIALIAS-BEST:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-ANTIALIAS-BEST:CAPS">
|
31
|
+
<ANCHOR id="cairo-set-antialias" href="cairo/cairo-cairo-t.html#cairo-set-antialias">
|
32
|
+
<ANCHOR id="cairo-get-antialias" href="cairo/cairo-cairo-t.html#cairo-get-antialias">
|
33
|
+
<ANCHOR id="cairo-set-dash" href="cairo/cairo-cairo-t.html#cairo-set-dash">
|
34
|
+
<ANCHOR id="cairo-get-dash-count" href="cairo/cairo-cairo-t.html#cairo-get-dash-count">
|
35
|
+
<ANCHOR id="cairo-get-dash" href="cairo/cairo-cairo-t.html#cairo-get-dash">
|
36
|
+
<ANCHOR id="cairo-fill-rule-t" href="cairo/cairo-cairo-t.html#cairo-fill-rule-t">
|
37
|
+
<ANCHOR id="CAIRO-FILL-RULE-WINDING:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-FILL-RULE-WINDING:CAPS">
|
38
|
+
<ANCHOR id="CAIRO-FILL-RULE-EVEN-ODD:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-FILL-RULE-EVEN-ODD:CAPS">
|
39
|
+
<ANCHOR id="cairo-set-fill-rule" href="cairo/cairo-cairo-t.html#cairo-set-fill-rule">
|
40
|
+
<ANCHOR id="cairo-get-fill-rule" href="cairo/cairo-cairo-t.html#cairo-get-fill-rule">
|
41
|
+
<ANCHOR id="cairo-line-cap-t" href="cairo/cairo-cairo-t.html#cairo-line-cap-t">
|
42
|
+
<ANCHOR id="CAIRO-LINE-CAP-BUTT:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-LINE-CAP-BUTT:CAPS">
|
43
|
+
<ANCHOR id="CAIRO-LINE-CAP-ROUND:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-LINE-CAP-ROUND:CAPS">
|
44
|
+
<ANCHOR id="CAIRO-LINE-CAP-SQUARE:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-LINE-CAP-SQUARE:CAPS">
|
45
|
+
<ANCHOR id="cairo-set-line-cap" href="cairo/cairo-cairo-t.html#cairo-set-line-cap">
|
46
|
+
<ANCHOR id="cairo-get-line-cap" href="cairo/cairo-cairo-t.html#cairo-get-line-cap">
|
47
|
+
<ANCHOR id="cairo-line-join-t" href="cairo/cairo-cairo-t.html#cairo-line-join-t">
|
48
|
+
<ANCHOR id="CAIRO-LINE-JOIN-MITER:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-LINE-JOIN-MITER:CAPS">
|
49
|
+
<ANCHOR id="CAIRO-LINE-JOIN-ROUND:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-LINE-JOIN-ROUND:CAPS">
|
50
|
+
<ANCHOR id="CAIRO-LINE-JOIN-BEVEL:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-LINE-JOIN-BEVEL:CAPS">
|
51
|
+
<ANCHOR id="cairo-set-line-join" href="cairo/cairo-cairo-t.html#cairo-set-line-join">
|
52
|
+
<ANCHOR id="cairo-get-line-join" href="cairo/cairo-cairo-t.html#cairo-get-line-join">
|
53
|
+
<ANCHOR id="cairo-set-line-width" href="cairo/cairo-cairo-t.html#cairo-set-line-width">
|
54
|
+
<ANCHOR id="cairo-get-line-width" href="cairo/cairo-cairo-t.html#cairo-get-line-width">
|
55
|
+
<ANCHOR id="cairo-set-miter-limit" href="cairo/cairo-cairo-t.html#cairo-set-miter-limit">
|
56
|
+
<ANCHOR id="cairo-get-miter-limit" href="cairo/cairo-cairo-t.html#cairo-get-miter-limit">
|
57
|
+
<ANCHOR id="cairo-operator-t" href="cairo/cairo-cairo-t.html#cairo-operator-t">
|
58
|
+
<ANCHOR id="CAIRO-OPERATOR-CLEAR:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-CLEAR:CAPS">
|
59
|
+
<ANCHOR id="CAIRO-OPERATOR-SOURCE:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-SOURCE:CAPS">
|
60
|
+
<ANCHOR id="CAIRO-OPERATOR-OVER:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-OVER:CAPS">
|
61
|
+
<ANCHOR id="CAIRO-OPERATOR-IN:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-IN:CAPS">
|
62
|
+
<ANCHOR id="CAIRO-OPERATOR-OUT:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-OUT:CAPS">
|
63
|
+
<ANCHOR id="CAIRO-OPERATOR-ATOP:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-ATOP:CAPS">
|
64
|
+
<ANCHOR id="CAIRO-OPERATOR-DEST:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-DEST:CAPS">
|
65
|
+
<ANCHOR id="CAIRO-OPERATOR-DEST-OVER:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-DEST-OVER:CAPS">
|
66
|
+
<ANCHOR id="CAIRO-OPERATOR-DEST-IN:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-DEST-IN:CAPS">
|
67
|
+
<ANCHOR id="CAIRO-OPERATOR-DEST-OUT:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-DEST-OUT:CAPS">
|
68
|
+
<ANCHOR id="CAIRO-OPERATOR-DEST-ATOP:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-DEST-ATOP:CAPS">
|
69
|
+
<ANCHOR id="CAIRO-OPERATOR-XOR:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-XOR:CAPS">
|
70
|
+
<ANCHOR id="CAIRO-OPERATOR-ADD:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-ADD:CAPS">
|
71
|
+
<ANCHOR id="CAIRO-OPERATOR-SATURATE:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-SATURATE:CAPS">
|
72
|
+
<ANCHOR id="CAIRO-OPERATOR-MULTIPLY:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-MULTIPLY:CAPS">
|
73
|
+
<ANCHOR id="CAIRO-OPERATOR-SCREEN:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-SCREEN:CAPS">
|
74
|
+
<ANCHOR id="CAIRO-OPERATOR-OVERLAY:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-OVERLAY:CAPS">
|
75
|
+
<ANCHOR id="CAIRO-OPERATOR-DARKEN:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-DARKEN:CAPS">
|
76
|
+
<ANCHOR id="CAIRO-OPERATOR-LIGHTEN:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-LIGHTEN:CAPS">
|
77
|
+
<ANCHOR id="CAIRO-OPERATOR-COLOR-DODGE:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-COLOR-DODGE:CAPS">
|
78
|
+
<ANCHOR id="CAIRO-OPERATOR-COLOR-BURN:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-COLOR-BURN:CAPS">
|
79
|
+
<ANCHOR id="CAIRO-OPERATOR-HARD-LIGHT:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-HARD-LIGHT:CAPS">
|
80
|
+
<ANCHOR id="CAIRO-OPERATOR-SOFT-LIGHT:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-SOFT-LIGHT:CAPS">
|
81
|
+
<ANCHOR id="CAIRO-OPERATOR-DIFFERENCE:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-DIFFERENCE:CAPS">
|
82
|
+
<ANCHOR id="CAIRO-OPERATOR-EXCLUSION:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-EXCLUSION:CAPS">
|
83
|
+
<ANCHOR id="CAIRO-OPERATOR-HSL-HUE:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-HSL-HUE:CAPS">
|
84
|
+
<ANCHOR id="CAIRO-OPERATOR-HSL-SATURATION:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-HSL-SATURATION:CAPS">
|
85
|
+
<ANCHOR id="CAIRO-OPERATOR-HSL-COLOR:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-HSL-COLOR:CAPS">
|
86
|
+
<ANCHOR id="CAIRO-OPERATOR-HSL-LUMINOSITY:CAPS" href="cairo/cairo-cairo-t.html#CAIRO-OPERATOR-HSL-LUMINOSITY:CAPS">
|
87
|
+
<ANCHOR id="cairo-set-operator" href="cairo/cairo-cairo-t.html#cairo-set-operator">
|
88
|
+
<ANCHOR id="cairo-get-operator" href="cairo/cairo-cairo-t.html#cairo-get-operator">
|
89
|
+
<ANCHOR id="cairo-set-tolerance" href="cairo/cairo-cairo-t.html#cairo-set-tolerance">
|
90
|
+
<ANCHOR id="cairo-get-tolerance" href="cairo/cairo-cairo-t.html#cairo-get-tolerance">
|
91
|
+
<ANCHOR id="cairo-clip" href="cairo/cairo-cairo-t.html#cairo-clip">
|
92
|
+
<ANCHOR id="cairo-clip-preserve" href="cairo/cairo-cairo-t.html#cairo-clip-preserve">
|
93
|
+
<ANCHOR id="cairo-clip-extents" href="cairo/cairo-cairo-t.html#cairo-clip-extents">
|
94
|
+
<ANCHOR id="cairo-in-clip" href="cairo/cairo-cairo-t.html#cairo-in-clip">
|
95
|
+
<ANCHOR id="cairo-reset-clip" href="cairo/cairo-cairo-t.html#cairo-reset-clip">
|
96
|
+
<ANCHOR id="cairo-rectangle-t" href="cairo/cairo-cairo-t.html#cairo-rectangle-t">
|
97
|
+
<ANCHOR id="cairo-rectangle-list-t" href="cairo/cairo-cairo-t.html#cairo-rectangle-list-t">
|
98
|
+
<ANCHOR id="cairo-rectangle-list-destroy" href="cairo/cairo-cairo-t.html#cairo-rectangle-list-destroy">
|
99
|
+
<ANCHOR id="cairo-copy-clip-rectangle-list" href="cairo/cairo-cairo-t.html#cairo-copy-clip-rectangle-list">
|
100
|
+
<ANCHOR id="cairo-fill" href="cairo/cairo-cairo-t.html#cairo-fill">
|
101
|
+
<ANCHOR id="cairo-fill-preserve" href="cairo/cairo-cairo-t.html#cairo-fill-preserve">
|
102
|
+
<ANCHOR id="cairo-fill-extents" href="cairo/cairo-cairo-t.html#cairo-fill-extents">
|
103
|
+
<ANCHOR id="cairo-in-fill" href="cairo/cairo-cairo-t.html#cairo-in-fill">
|
104
|
+
<ANCHOR id="cairo-mask" href="cairo/cairo-cairo-t.html#cairo-mask">
|
105
|
+
<ANCHOR id="cairo-mask-surface" href="cairo/cairo-cairo-t.html#cairo-mask-surface">
|
106
|
+
<ANCHOR id="cairo-paint" href="cairo/cairo-cairo-t.html#cairo-paint">
|
107
|
+
<ANCHOR id="cairo-paint-with-alpha" href="cairo/cairo-cairo-t.html#cairo-paint-with-alpha">
|
108
|
+
<ANCHOR id="cairo-stroke" href="cairo/cairo-cairo-t.html#cairo-stroke">
|
109
|
+
<ANCHOR id="cairo-stroke-preserve" href="cairo/cairo-cairo-t.html#cairo-stroke-preserve">
|
110
|
+
<ANCHOR id="cairo-stroke-extents" href="cairo/cairo-cairo-t.html#cairo-stroke-extents">
|
111
|
+
<ANCHOR id="cairo-in-stroke" href="cairo/cairo-cairo-t.html#cairo-in-stroke">
|
112
|
+
<ANCHOR id="cairo-copy-page" href="cairo/cairo-cairo-t.html#cairo-copy-page">
|
113
|
+
<ANCHOR id="cairo-show-page" href="cairo/cairo-cairo-t.html#cairo-show-page">
|
114
|
+
<ANCHOR id="cairo-get-reference-count" href="cairo/cairo-cairo-t.html#cairo-get-reference-count">
|
115
|
+
<ANCHOR id="cairo-set-user-data" href="cairo/cairo-cairo-t.html#cairo-set-user-data">
|
116
|
+
<ANCHOR id="cairo-get-user-data" href="cairo/cairo-cairo-t.html#cairo-get-user-data">
|
117
|
+
<ANCHOR id="cairo-cairo-t.see-also" href="cairo/cairo-cairo-t.html#cairo-cairo-t.see-also">
|
118
|
+
<ANCHOR id="cairo-Paths" href="cairo/cairo-Paths.html">
|
119
|
+
<ANCHOR id="cairo-Paths.synopsis" href="cairo/cairo-Paths.html#cairo-Paths.synopsis">
|
120
|
+
<ANCHOR id="cairo-Paths.description" href="cairo/cairo-Paths.html#cairo-Paths.description">
|
121
|
+
<ANCHOR id="cairo-Paths.details" href="cairo/cairo-Paths.html#cairo-Paths.details">
|
122
|
+
<ANCHOR id="cairo-path-t" href="cairo/cairo-Paths.html#cairo-path-t">
|
123
|
+
<ANCHOR id="cairo-path-data-t" href="cairo/cairo-Paths.html#cairo-path-data-t">
|
124
|
+
<ANCHOR id="cairo-path-data-type-t" href="cairo/cairo-Paths.html#cairo-path-data-type-t">
|
125
|
+
<ANCHOR id="CAIRO-PATH-MOVE-TO:CAPS" href="cairo/cairo-Paths.html#CAIRO-PATH-MOVE-TO:CAPS">
|
126
|
+
<ANCHOR id="CAIRO-PATH-LINE-TO:CAPS" href="cairo/cairo-Paths.html#CAIRO-PATH-LINE-TO:CAPS">
|
127
|
+
<ANCHOR id="CAIRO-PATH-CURVE-TO:CAPS" href="cairo/cairo-Paths.html#CAIRO-PATH-CURVE-TO:CAPS">
|
128
|
+
<ANCHOR id="CAIRO-PATH-CLOSE-PATH:CAPS" href="cairo/cairo-Paths.html#CAIRO-PATH-CLOSE-PATH:CAPS">
|
129
|
+
<ANCHOR id="cairo-copy-path" href="cairo/cairo-Paths.html#cairo-copy-path">
|
130
|
+
<ANCHOR id="cairo-copy-path-flat" href="cairo/cairo-Paths.html#cairo-copy-path-flat">
|
131
|
+
<ANCHOR id="cairo-path-destroy" href="cairo/cairo-Paths.html#cairo-path-destroy">
|
132
|
+
<ANCHOR id="cairo-append-path" href="cairo/cairo-Paths.html#cairo-append-path">
|
133
|
+
<ANCHOR id="cairo-has-current-point" href="cairo/cairo-Paths.html#cairo-has-current-point">
|
134
|
+
<ANCHOR id="cairo-get-current-point" href="cairo/cairo-Paths.html#cairo-get-current-point">
|
135
|
+
<ANCHOR id="cairo-new-path" href="cairo/cairo-Paths.html#cairo-new-path">
|
136
|
+
<ANCHOR id="cairo-new-sub-path" href="cairo/cairo-Paths.html#cairo-new-sub-path">
|
137
|
+
<ANCHOR id="cairo-close-path" href="cairo/cairo-Paths.html#cairo-close-path">
|
138
|
+
<ANCHOR id="cairo-arc" href="cairo/cairo-Paths.html#cairo-arc">
|
139
|
+
<ANCHOR id="cairo-arc-negative" href="cairo/cairo-Paths.html#cairo-arc-negative">
|
140
|
+
<ANCHOR id="cairo-curve-to" href="cairo/cairo-Paths.html#cairo-curve-to">
|
141
|
+
<ANCHOR id="cairo-line-to" href="cairo/cairo-Paths.html#cairo-line-to">
|
142
|
+
<ANCHOR id="cairo-move-to" href="cairo/cairo-Paths.html#cairo-move-to">
|
143
|
+
<ANCHOR id="cairo-rectangle" href="cairo/cairo-Paths.html#cairo-rectangle">
|
144
|
+
<ANCHOR id="cairo-glyph-path" href="cairo/cairo-Paths.html#cairo-glyph-path">
|
145
|
+
<ANCHOR id="cairo-text-path" href="cairo/cairo-Paths.html#cairo-text-path">
|
146
|
+
<ANCHOR id="cairo-rel-curve-to" href="cairo/cairo-Paths.html#cairo-rel-curve-to">
|
147
|
+
<ANCHOR id="cairo-rel-line-to" href="cairo/cairo-Paths.html#cairo-rel-line-to">
|
148
|
+
<ANCHOR id="cairo-rel-move-to" href="cairo/cairo-Paths.html#cairo-rel-move-to">
|
149
|
+
<ANCHOR id="cairo-path-extents" href="cairo/cairo-Paths.html#cairo-path-extents">
|
150
|
+
<ANCHOR id="cairo-cairo-pattern-t" href="cairo/cairo-cairo-pattern-t.html">
|
151
|
+
<ANCHOR id="cairo-cairo-pattern-t.synopsis" href="cairo/cairo-cairo-pattern-t.html#cairo-cairo-pattern-t.synopsis">
|
152
|
+
<ANCHOR id="cairo-cairo-pattern-t.description" href="cairo/cairo-cairo-pattern-t.html#cairo-cairo-pattern-t.description">
|
153
|
+
<ANCHOR id="cairo-cairo-pattern-t.details" href="cairo/cairo-cairo-pattern-t.html#cairo-cairo-pattern-t.details">
|
154
|
+
<ANCHOR id="cairo-pattern-t" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-t">
|
155
|
+
<ANCHOR id="cairo-pattern-add-color-stop-rgb" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-add-color-stop-rgb">
|
156
|
+
<ANCHOR id="cairo-pattern-add-color-stop-rgba" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-add-color-stop-rgba">
|
157
|
+
<ANCHOR id="cairo-pattern-get-color-stop-count" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-color-stop-count">
|
158
|
+
<ANCHOR id="cairo-pattern-get-color-stop-rgba" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-color-stop-rgba">
|
159
|
+
<ANCHOR id="cairo-pattern-create-rgb" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-create-rgb">
|
160
|
+
<ANCHOR id="cairo-pattern-create-rgba" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-create-rgba">
|
161
|
+
<ANCHOR id="cairo-pattern-get-rgba" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-rgba">
|
162
|
+
<ANCHOR id="cairo-pattern-create-for-surface" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-create-for-surface">
|
163
|
+
<ANCHOR id="cairo-pattern-get-surface" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-surface">
|
164
|
+
<ANCHOR id="cairo-pattern-create-linear" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-create-linear">
|
165
|
+
<ANCHOR id="cairo-pattern-get-linear-points" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-linear-points">
|
166
|
+
<ANCHOR id="cairo-pattern-create-radial" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-create-radial">
|
167
|
+
<ANCHOR id="cairo-pattern-get-radial-circles" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-radial-circles">
|
168
|
+
<ANCHOR id="cairo-pattern-create-mesh" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-create-mesh">
|
169
|
+
<ANCHOR id="cairo-mesh-pattern-begin-patch" href="cairo/cairo-cairo-pattern-t.html#cairo-mesh-pattern-begin-patch">
|
170
|
+
<ANCHOR id="cairo-mesh-pattern-end-patch" href="cairo/cairo-cairo-pattern-t.html#cairo-mesh-pattern-end-patch">
|
171
|
+
<ANCHOR id="cairo-mesh-pattern-move-to" href="cairo/cairo-cairo-pattern-t.html#cairo-mesh-pattern-move-to">
|
172
|
+
<ANCHOR id="cairo-mesh-pattern-line-to" href="cairo/cairo-cairo-pattern-t.html#cairo-mesh-pattern-line-to">
|
173
|
+
<ANCHOR id="cairo-mesh-pattern-curve-to" href="cairo/cairo-cairo-pattern-t.html#cairo-mesh-pattern-curve-to">
|
174
|
+
<ANCHOR id="cairo-mesh-pattern-set-control-point" href="cairo/cairo-cairo-pattern-t.html#cairo-mesh-pattern-set-control-point">
|
175
|
+
<ANCHOR id="cairo-mesh-pattern-set-corner-color-rgb" href="cairo/cairo-cairo-pattern-t.html#cairo-mesh-pattern-set-corner-color-rgb">
|
176
|
+
<ANCHOR id="cairo-mesh-pattern-set-corner-color-rgba" href="cairo/cairo-cairo-pattern-t.html#cairo-mesh-pattern-set-corner-color-rgba">
|
177
|
+
<ANCHOR id="cairo-mesh-pattern-get-patch-count" href="cairo/cairo-cairo-pattern-t.html#cairo-mesh-pattern-get-patch-count">
|
178
|
+
<ANCHOR id="cairo-mesh-pattern-get-path" href="cairo/cairo-cairo-pattern-t.html#cairo-mesh-pattern-get-path">
|
179
|
+
<ANCHOR id="cairo-mesh-pattern-get-control-point" href="cairo/cairo-cairo-pattern-t.html#cairo-mesh-pattern-get-control-point">
|
180
|
+
<ANCHOR id="cairo-mesh-pattern-get-corner-color-rgba" href="cairo/cairo-cairo-pattern-t.html#cairo-mesh-pattern-get-corner-color-rgba">
|
181
|
+
<ANCHOR id="cairo-pattern-reference" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-reference">
|
182
|
+
<ANCHOR id="cairo-pattern-destroy" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-destroy">
|
183
|
+
<ANCHOR id="cairo-pattern-status" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-status">
|
184
|
+
<ANCHOR id="cairo-extend-t" href="cairo/cairo-cairo-pattern-t.html#cairo-extend-t">
|
185
|
+
<ANCHOR id="CAIRO-EXTEND-NONE:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-EXTEND-NONE:CAPS">
|
186
|
+
<ANCHOR id="CAIRO-EXTEND-REPEAT:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-EXTEND-REPEAT:CAPS">
|
187
|
+
<ANCHOR id="CAIRO-EXTEND-REFLECT:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-EXTEND-REFLECT:CAPS">
|
188
|
+
<ANCHOR id="CAIRO-EXTEND-PAD:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-EXTEND-PAD:CAPS">
|
189
|
+
<ANCHOR id="cairo-pattern-set-extend" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-extend">
|
190
|
+
<ANCHOR id="cairo-pattern-get-extend" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-extend">
|
191
|
+
<ANCHOR id="cairo-filter-t" href="cairo/cairo-cairo-pattern-t.html#cairo-filter-t">
|
192
|
+
<ANCHOR id="CAIRO-FILTER-FAST:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-FILTER-FAST:CAPS">
|
193
|
+
<ANCHOR id="CAIRO-FILTER-GOOD:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-FILTER-GOOD:CAPS">
|
194
|
+
<ANCHOR id="CAIRO-FILTER-BEST:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-FILTER-BEST:CAPS">
|
195
|
+
<ANCHOR id="CAIRO-FILTER-NEAREST:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-FILTER-NEAREST:CAPS">
|
196
|
+
<ANCHOR id="CAIRO-FILTER-BILINEAR:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-FILTER-BILINEAR:CAPS">
|
197
|
+
<ANCHOR id="CAIRO-FILTER-GAUSSIAN:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-FILTER-GAUSSIAN:CAPS">
|
198
|
+
<ANCHOR id="cairo-pattern-set-filter" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-filter">
|
199
|
+
<ANCHOR id="cairo-pattern-get-filter" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-filter">
|
200
|
+
<ANCHOR id="cairo-pattern-set-matrix" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-matrix">
|
201
|
+
<ANCHOR id="cairo-pattern-get-matrix" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-matrix">
|
202
|
+
<ANCHOR id="cairo-pattern-type-t" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-type-t">
|
203
|
+
<ANCHOR id="CAIRO-PATTERN-TYPE-SOLID:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-PATTERN-TYPE-SOLID:CAPS">
|
204
|
+
<ANCHOR id="CAIRO-PATTERN-TYPE-SURFACE:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-PATTERN-TYPE-SURFACE:CAPS">
|
205
|
+
<ANCHOR id="CAIRO-PATTERN-TYPE-LINEAR:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-PATTERN-TYPE-LINEAR:CAPS">
|
206
|
+
<ANCHOR id="CAIRO-PATTERN-TYPE-RADIAL:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-PATTERN-TYPE-RADIAL:CAPS">
|
207
|
+
<ANCHOR id="CAIRO-PATTERN-TYPE-MESH:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-PATTERN-TYPE-MESH:CAPS">
|
208
|
+
<ANCHOR id="CAIRO-PATTERN-TYPE-RASTER-SOURCE:CAPS" href="cairo/cairo-cairo-pattern-t.html#CAIRO-PATTERN-TYPE-RASTER-SOURCE:CAPS">
|
209
|
+
<ANCHOR id="cairo-pattern-get-type" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-type">
|
210
|
+
<ANCHOR id="cairo-pattern-get-reference-count" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-reference-count">
|
211
|
+
<ANCHOR id="cairo-pattern-set-user-data" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-user-data">
|
212
|
+
<ANCHOR id="cairo-pattern-get-user-data" href="cairo/cairo-cairo-pattern-t.html#cairo-pattern-get-user-data">
|
213
|
+
<ANCHOR id="cairo-cairo-pattern-t.see-also" href="cairo/cairo-cairo-pattern-t.html#cairo-cairo-pattern-t.see-also">
|
214
|
+
<ANCHOR id="cairo-Regions" href="cairo/cairo-Regions.html">
|
215
|
+
<ANCHOR id="cairo-Regions.synopsis" href="cairo/cairo-Regions.html#cairo-Regions.synopsis">
|
216
|
+
<ANCHOR id="cairo-Regions.description" href="cairo/cairo-Regions.html#cairo-Regions.description">
|
217
|
+
<ANCHOR id="cairo-Regions.details" href="cairo/cairo-Regions.html#cairo-Regions.details">
|
218
|
+
<ANCHOR id="cairo-region-t" href="cairo/cairo-Regions.html#cairo-region-t">
|
219
|
+
<ANCHOR id="cairo-region-create" href="cairo/cairo-Regions.html#cairo-region-create">
|
220
|
+
<ANCHOR id="cairo-region-create-rectangle" href="cairo/cairo-Regions.html#cairo-region-create-rectangle">
|
221
|
+
<ANCHOR id="cairo-region-create-rectangles" href="cairo/cairo-Regions.html#cairo-region-create-rectangles">
|
222
|
+
<ANCHOR id="cairo-region-copy" href="cairo/cairo-Regions.html#cairo-region-copy">
|
223
|
+
<ANCHOR id="cairo-region-reference" href="cairo/cairo-Regions.html#cairo-region-reference">
|
224
|
+
<ANCHOR id="cairo-region-destroy" href="cairo/cairo-Regions.html#cairo-region-destroy">
|
225
|
+
<ANCHOR id="cairo-region-status" href="cairo/cairo-Regions.html#cairo-region-status">
|
226
|
+
<ANCHOR id="cairo-region-get-extents" href="cairo/cairo-Regions.html#cairo-region-get-extents">
|
227
|
+
<ANCHOR id="cairo-region-num-rectangles" href="cairo/cairo-Regions.html#cairo-region-num-rectangles">
|
228
|
+
<ANCHOR id="cairo-region-get-rectangle" href="cairo/cairo-Regions.html#cairo-region-get-rectangle">
|
229
|
+
<ANCHOR id="cairo-region-is-empty" href="cairo/cairo-Regions.html#cairo-region-is-empty">
|
230
|
+
<ANCHOR id="cairo-region-contains-point" href="cairo/cairo-Regions.html#cairo-region-contains-point">
|
231
|
+
<ANCHOR id="cairo-region-overlap-t" href="cairo/cairo-Regions.html#cairo-region-overlap-t">
|
232
|
+
<ANCHOR id="CAIRO-REGION-OVERLAP-IN:CAPS" href="cairo/cairo-Regions.html#CAIRO-REGION-OVERLAP-IN:CAPS">
|
233
|
+
<ANCHOR id="CAIRO-REGION-OVERLAP-OUT:CAPS" href="cairo/cairo-Regions.html#CAIRO-REGION-OVERLAP-OUT:CAPS">
|
234
|
+
<ANCHOR id="CAIRO-REGION-OVERLAP-PART:CAPS" href="cairo/cairo-Regions.html#CAIRO-REGION-OVERLAP-PART:CAPS">
|
235
|
+
<ANCHOR id="cairo-region-contains-rectangle" href="cairo/cairo-Regions.html#cairo-region-contains-rectangle">
|
236
|
+
<ANCHOR id="cairo-region-equal" href="cairo/cairo-Regions.html#cairo-region-equal">
|
237
|
+
<ANCHOR id="cairo-region-translate" href="cairo/cairo-Regions.html#cairo-region-translate">
|
238
|
+
<ANCHOR id="cairo-region-intersect" href="cairo/cairo-Regions.html#cairo-region-intersect">
|
239
|
+
<ANCHOR id="cairo-region-intersect-rectangle" href="cairo/cairo-Regions.html#cairo-region-intersect-rectangle">
|
240
|
+
<ANCHOR id="cairo-region-subtract" href="cairo/cairo-Regions.html#cairo-region-subtract">
|
241
|
+
<ANCHOR id="cairo-region-subtract-rectangle" href="cairo/cairo-Regions.html#cairo-region-subtract-rectangle">
|
242
|
+
<ANCHOR id="cairo-region-union" href="cairo/cairo-Regions.html#cairo-region-union">
|
243
|
+
<ANCHOR id="cairo-region-union-rectangle" href="cairo/cairo-Regions.html#cairo-region-union-rectangle">
|
244
|
+
<ANCHOR id="cairo-region-xor" href="cairo/cairo-Regions.html#cairo-region-xor">
|
245
|
+
<ANCHOR id="cairo-region-xor-rectangle" href="cairo/cairo-Regions.html#cairo-region-xor-rectangle">
|
246
|
+
<ANCHOR id="cairo-Transformations" href="cairo/cairo-Transformations.html">
|
247
|
+
<ANCHOR id="cairo-Transformations.synopsis" href="cairo/cairo-Transformations.html#cairo-Transformations.synopsis">
|
248
|
+
<ANCHOR id="cairo-Transformations.description" href="cairo/cairo-Transformations.html#cairo-Transformations.description">
|
249
|
+
<ANCHOR id="cairo-Transformations.details" href="cairo/cairo-Transformations.html#cairo-Transformations.details">
|
250
|
+
<ANCHOR id="cairo-translate" href="cairo/cairo-Transformations.html#cairo-translate">
|
251
|
+
<ANCHOR id="cairo-scale" href="cairo/cairo-Transformations.html#cairo-scale">
|
252
|
+
<ANCHOR id="cairo-rotate" href="cairo/cairo-Transformations.html#cairo-rotate">
|
253
|
+
<ANCHOR id="cairo-transform" href="cairo/cairo-Transformations.html#cairo-transform">
|
254
|
+
<ANCHOR id="cairo-set-matrix" href="cairo/cairo-Transformations.html#cairo-set-matrix">
|
255
|
+
<ANCHOR id="cairo-get-matrix" href="cairo/cairo-Transformations.html#cairo-get-matrix">
|
256
|
+
<ANCHOR id="cairo-identity-matrix" href="cairo/cairo-Transformations.html#cairo-identity-matrix">
|
257
|
+
<ANCHOR id="cairo-user-to-device" href="cairo/cairo-Transformations.html#cairo-user-to-device">
|
258
|
+
<ANCHOR id="cairo-user-to-device-distance" href="cairo/cairo-Transformations.html#cairo-user-to-device-distance">
|
259
|
+
<ANCHOR id="cairo-device-to-user" href="cairo/cairo-Transformations.html#cairo-device-to-user">
|
260
|
+
<ANCHOR id="cairo-device-to-user-distance" href="cairo/cairo-Transformations.html#cairo-device-to-user-distance">
|
261
|
+
<ANCHOR id="cairo-Transformations.see-also" href="cairo/cairo-Transformations.html#cairo-Transformations.see-also">
|
262
|
+
<ANCHOR id="cairo-text" href="cairo/cairo-text.html">
|
263
|
+
<ANCHOR id="cairo-text.synopsis" href="cairo/cairo-text.html#cairo-text.synopsis">
|
264
|
+
<ANCHOR id="cairo-text.description" href="cairo/cairo-text.html#cairo-text.description">
|
265
|
+
<ANCHOR id="cairo-text.details" href="cairo/cairo-text.html#cairo-text.details">
|
266
|
+
<ANCHOR id="cairo-glyph-t" href="cairo/cairo-text.html#cairo-glyph-t">
|
267
|
+
<ANCHOR id="cairo-font-slant-t" href="cairo/cairo-text.html#cairo-font-slant-t">
|
268
|
+
<ANCHOR id="CAIRO-FONT-SLANT-NORMAL:CAPS" href="cairo/cairo-text.html#CAIRO-FONT-SLANT-NORMAL:CAPS">
|
269
|
+
<ANCHOR id="CAIRO-FONT-SLANT-ITALIC:CAPS" href="cairo/cairo-text.html#CAIRO-FONT-SLANT-ITALIC:CAPS">
|
270
|
+
<ANCHOR id="CAIRO-FONT-SLANT-OBLIQUE:CAPS" href="cairo/cairo-text.html#CAIRO-FONT-SLANT-OBLIQUE:CAPS">
|
271
|
+
<ANCHOR id="cairo-font-weight-t" href="cairo/cairo-text.html#cairo-font-weight-t">
|
272
|
+
<ANCHOR id="CAIRO-FONT-WEIGHT-NORMAL:CAPS" href="cairo/cairo-text.html#CAIRO-FONT-WEIGHT-NORMAL:CAPS">
|
273
|
+
<ANCHOR id="CAIRO-FONT-WEIGHT-BOLD:CAPS" href="cairo/cairo-text.html#CAIRO-FONT-WEIGHT-BOLD:CAPS">
|
274
|
+
<ANCHOR id="cairo-text-cluster-t" href="cairo/cairo-text.html#cairo-text-cluster-t">
|
275
|
+
<ANCHOR id="cairo-text-cluster-flags-t" href="cairo/cairo-text.html#cairo-text-cluster-flags-t">
|
276
|
+
<ANCHOR id="CAIRO-TEXT-CLUSTER-FLAG-BACKWARD:CAPS" href="cairo/cairo-text.html#CAIRO-TEXT-CLUSTER-FLAG-BACKWARD:CAPS">
|
277
|
+
<ANCHOR id="cairo-select-font-face" href="cairo/cairo-text.html#cairo-select-font-face">
|
278
|
+
<ANCHOR id="cairo-set-font-size" href="cairo/cairo-text.html#cairo-set-font-size">
|
279
|
+
<ANCHOR id="cairo-set-font-matrix" href="cairo/cairo-text.html#cairo-set-font-matrix">
|
280
|
+
<ANCHOR id="cairo-get-font-matrix" href="cairo/cairo-text.html#cairo-get-font-matrix">
|
281
|
+
<ANCHOR id="cairo-set-font-options" href="cairo/cairo-text.html#cairo-set-font-options">
|
282
|
+
<ANCHOR id="cairo-get-font-options" href="cairo/cairo-text.html#cairo-get-font-options">
|
283
|
+
<ANCHOR id="cairo-set-font-face" href="cairo/cairo-text.html#cairo-set-font-face">
|
284
|
+
<ANCHOR id="cairo-get-font-face" href="cairo/cairo-text.html#cairo-get-font-face">
|
285
|
+
<ANCHOR id="cairo-set-scaled-font" href="cairo/cairo-text.html#cairo-set-scaled-font">
|
286
|
+
<ANCHOR id="cairo-get-scaled-font" href="cairo/cairo-text.html#cairo-get-scaled-font">
|
287
|
+
<ANCHOR id="cairo-show-text" href="cairo/cairo-text.html#cairo-show-text">
|
288
|
+
<ANCHOR id="cairo-show-glyphs" href="cairo/cairo-text.html#cairo-show-glyphs">
|
289
|
+
<ANCHOR id="cairo-show-text-glyphs" href="cairo/cairo-text.html#cairo-show-text-glyphs">
|
290
|
+
<ANCHOR id="cairo-font-extents" href="cairo/cairo-text.html#cairo-font-extents">
|
291
|
+
<ANCHOR id="cairo-text-extents" href="cairo/cairo-text.html#cairo-text-extents">
|
292
|
+
<ANCHOR id="cairo-glyph-extents" href="cairo/cairo-text.html#cairo-glyph-extents">
|
293
|
+
<ANCHOR id="cairo-toy-font-face-create" href="cairo/cairo-text.html#cairo-toy-font-face-create">
|
294
|
+
<ANCHOR id="cairo-toy-font-face-get-family" href="cairo/cairo-text.html#cairo-toy-font-face-get-family">
|
295
|
+
<ANCHOR id="cairo-toy-font-face-get-slant" href="cairo/cairo-text.html#cairo-toy-font-face-get-slant">
|
296
|
+
<ANCHOR id="cairo-toy-font-face-get-weight" href="cairo/cairo-text.html#cairo-toy-font-face-get-weight">
|
297
|
+
<ANCHOR id="cairo-glyph-allocate" href="cairo/cairo-text.html#cairo-glyph-allocate">
|
298
|
+
<ANCHOR id="cairo-glyph-free" href="cairo/cairo-text.html#cairo-glyph-free">
|
299
|
+
<ANCHOR id="cairo-text-cluster-allocate" href="cairo/cairo-text.html#cairo-text-cluster-allocate">
|
300
|
+
<ANCHOR id="cairo-text-cluster-free" href="cairo/cairo-text.html#cairo-text-cluster-free">
|
301
|
+
<ANCHOR id="cairo-text.see-also" href="cairo/cairo-text.html#cairo-text.see-also">
|
302
|
+
<ANCHOR id="cairo-Raster-Sources" href="cairo/cairo-Raster-Sources.html">
|
303
|
+
<ANCHOR id="cairo-Raster-Sources.synopsis" href="cairo/cairo-Raster-Sources.html#cairo-Raster-Sources.synopsis">
|
304
|
+
<ANCHOR id="cairo-Raster-Sources.description" href="cairo/cairo-Raster-Sources.html#cairo-Raster-Sources.description">
|
305
|
+
<ANCHOR id="cairo-Raster-Sources.details" href="cairo/cairo-Raster-Sources.html#cairo-Raster-Sources.details">
|
306
|
+
<ANCHOR id="cairo-pattern-create-raster-source" href="cairo/cairo-Raster-Sources.html#cairo-pattern-create-raster-source">
|
307
|
+
<ANCHOR id="cairo-raster-source-pattern-set-callback-data" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-pattern-set-callback-data">
|
308
|
+
<ANCHOR id="cairo-raster-source-pattern-get-callback-data" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-pattern-get-callback-data">
|
309
|
+
<ANCHOR id="cairo-raster-source-pattern-set-acquire" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-pattern-set-acquire">
|
310
|
+
<ANCHOR id="cairo-raster-source-pattern-get-acquire" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-pattern-get-acquire">
|
311
|
+
<ANCHOR id="cairo-raster-source-pattern-set-snapshot" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-pattern-set-snapshot">
|
312
|
+
<ANCHOR id="cairo-raster-source-pattern-get-snapshot" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-pattern-get-snapshot">
|
313
|
+
<ANCHOR id="cairo-raster-source-pattern-set-copy" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-pattern-set-copy">
|
314
|
+
<ANCHOR id="cairo-raster-source-pattern-get-copy" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-pattern-get-copy">
|
315
|
+
<ANCHOR id="cairo-raster-source-pattern-set-finish" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-pattern-set-finish">
|
316
|
+
<ANCHOR id="cairo-raster-source-pattern-get-finish" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-pattern-get-finish">
|
317
|
+
<ANCHOR id="cairo-raster-source-acquire-func-t" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-acquire-func-t">
|
318
|
+
<ANCHOR id="cairo-raster-source-release-func-t" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-release-func-t">
|
319
|
+
<ANCHOR id="cairo-raster-source-snapshot-func-t" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-snapshot-func-t">
|
320
|
+
<ANCHOR id="cairo-raster-source-copy-func-t" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-copy-func-t">
|
321
|
+
<ANCHOR id="cairo-raster-source-finish-func-t" href="cairo/cairo-Raster-Sources.html#cairo-raster-source-finish-func-t">
|
322
|
+
<ANCHOR id="cairo-Raster-Sources.see-also" href="cairo/cairo-Raster-Sources.html#cairo-Raster-Sources.see-also">
|
323
|
+
<ANCHOR id="cairo-cairo-font-face-t" href="cairo/cairo-cairo-font-face-t.html">
|
324
|
+
<ANCHOR id="cairo-cairo-font-face-t.synopsis" href="cairo/cairo-cairo-font-face-t.html#cairo-cairo-font-face-t.synopsis">
|
325
|
+
<ANCHOR id="cairo-cairo-font-face-t.description" href="cairo/cairo-cairo-font-face-t.html#cairo-cairo-font-face-t.description">
|
326
|
+
<ANCHOR id="cairo-cairo-font-face-t.details" href="cairo/cairo-cairo-font-face-t.html#cairo-cairo-font-face-t.details">
|
327
|
+
<ANCHOR id="cairo-font-face-t" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-t">
|
328
|
+
<ANCHOR id="cairo-font-face-reference" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-reference">
|
329
|
+
<ANCHOR id="cairo-font-face-destroy" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-destroy">
|
330
|
+
<ANCHOR id="cairo-font-face-status" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-status">
|
331
|
+
<ANCHOR id="cairo-font-type-t" href="cairo/cairo-cairo-font-face-t.html#cairo-font-type-t">
|
332
|
+
<ANCHOR id="CAIRO-FONT-TYPE-TOY:CAPS" href="cairo/cairo-cairo-font-face-t.html#CAIRO-FONT-TYPE-TOY:CAPS">
|
333
|
+
<ANCHOR id="CAIRO-FONT-TYPE-FT:CAPS" href="cairo/cairo-cairo-font-face-t.html#CAIRO-FONT-TYPE-FT:CAPS">
|
334
|
+
<ANCHOR id="CAIRO-FONT-TYPE-WIN32:CAPS" href="cairo/cairo-cairo-font-face-t.html#CAIRO-FONT-TYPE-WIN32:CAPS">
|
335
|
+
<ANCHOR id="CAIRO-FONT-TYPE-QUARTZ:CAPS" href="cairo/cairo-cairo-font-face-t.html#CAIRO-FONT-TYPE-QUARTZ:CAPS">
|
336
|
+
<ANCHOR id="CAIRO-FONT-TYPE-USER:CAPS" href="cairo/cairo-cairo-font-face-t.html#CAIRO-FONT-TYPE-USER:CAPS">
|
337
|
+
<ANCHOR id="cairo-font-face-get-type" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-get-type">
|
338
|
+
<ANCHOR id="cairo-font-face-get-reference-count" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-get-reference-count">
|
339
|
+
<ANCHOR id="cairo-font-face-set-user-data" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-set-user-data">
|
340
|
+
<ANCHOR id="cairo-font-face-get-user-data" href="cairo/cairo-cairo-font-face-t.html#cairo-font-face-get-user-data">
|
341
|
+
<ANCHOR id="cairo-cairo-font-face-t.see-also" href="cairo/cairo-cairo-font-face-t.html#cairo-cairo-font-face-t.see-also">
|
342
|
+
<ANCHOR id="cairo-cairo-scaled-font-t" href="cairo/cairo-cairo-scaled-font-t.html">
|
343
|
+
<ANCHOR id="cairo-cairo-scaled-font-t.synopsis" href="cairo/cairo-cairo-scaled-font-t.html#cairo-cairo-scaled-font-t.synopsis">
|
344
|
+
<ANCHOR id="cairo-cairo-scaled-font-t.description" href="cairo/cairo-cairo-scaled-font-t.html#cairo-cairo-scaled-font-t.description">
|
345
|
+
<ANCHOR id="cairo-cairo-scaled-font-t.details" href="cairo/cairo-cairo-scaled-font-t.html#cairo-cairo-scaled-font-t.details">
|
346
|
+
<ANCHOR id="cairo-scaled-font-t" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-t">
|
347
|
+
<ANCHOR id="cairo-scaled-font-create" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-create">
|
348
|
+
<ANCHOR id="cairo-scaled-font-reference" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-reference">
|
349
|
+
<ANCHOR id="cairo-scaled-font-destroy" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-destroy">
|
350
|
+
<ANCHOR id="cairo-scaled-font-status" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-status">
|
351
|
+
<ANCHOR id="cairo-font-extents-t" href="cairo/cairo-cairo-scaled-font-t.html#cairo-font-extents-t">
|
352
|
+
<ANCHOR id="cairo-scaled-font-extents" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-extents">
|
353
|
+
<ANCHOR id="cairo-text-extents-t" href="cairo/cairo-cairo-scaled-font-t.html#cairo-text-extents-t">
|
354
|
+
<ANCHOR id="cairo-scaled-font-text-extents" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-text-extents">
|
355
|
+
<ANCHOR id="cairo-scaled-font-glyph-extents" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-glyph-extents">
|
356
|
+
<ANCHOR id="cairo-scaled-font-text-to-glyphs" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-text-to-glyphs">
|
357
|
+
<ANCHOR id="cairo-scaled-font-get-font-face" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-font-face">
|
358
|
+
<ANCHOR id="cairo-scaled-font-get-font-options" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-font-options">
|
359
|
+
<ANCHOR id="cairo-scaled-font-get-font-matrix" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-font-matrix">
|
360
|
+
<ANCHOR id="cairo-scaled-font-get-ctm" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-ctm">
|
361
|
+
<ANCHOR id="cairo-scaled-font-get-scale-matrix" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-scale-matrix">
|
362
|
+
<ANCHOR id="cairo-scaled-font-get-type" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-type">
|
363
|
+
<ANCHOR id="cairo-scaled-font-get-reference-count" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-reference-count">
|
364
|
+
<ANCHOR id="cairo-scaled-font-set-user-data" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-set-user-data">
|
365
|
+
<ANCHOR id="cairo-scaled-font-get-user-data" href="cairo/cairo-cairo-scaled-font-t.html#cairo-scaled-font-get-user-data">
|
366
|
+
<ANCHOR id="cairo-cairo-scaled-font-t.see-also" href="cairo/cairo-cairo-scaled-font-t.html#cairo-cairo-scaled-font-t.see-also">
|
367
|
+
<ANCHOR id="cairo-cairo-font-options-t" href="cairo/cairo-cairo-font-options-t.html">
|
368
|
+
<ANCHOR id="cairo-cairo-font-options-t.synopsis" href="cairo/cairo-cairo-font-options-t.html#cairo-cairo-font-options-t.synopsis">
|
369
|
+
<ANCHOR id="cairo-cairo-font-options-t.description" href="cairo/cairo-cairo-font-options-t.html#cairo-cairo-font-options-t.description">
|
370
|
+
<ANCHOR id="cairo-cairo-font-options-t.details" href="cairo/cairo-cairo-font-options-t.html#cairo-cairo-font-options-t.details">
|
371
|
+
<ANCHOR id="cairo-font-options-t" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-t">
|
372
|
+
<ANCHOR id="cairo-font-options-create" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-create">
|
373
|
+
<ANCHOR id="cairo-font-options-copy" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-copy">
|
374
|
+
<ANCHOR id="cairo-font-options-destroy" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-destroy">
|
375
|
+
<ANCHOR id="cairo-font-options-status" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-status">
|
376
|
+
<ANCHOR id="cairo-font-options-merge" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-merge">
|
377
|
+
<ANCHOR id="cairo-font-options-hash" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-hash">
|
378
|
+
<ANCHOR id="cairo-font-options-equal" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-equal">
|
379
|
+
<ANCHOR id="cairo-font-options-set-antialias" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-set-antialias">
|
380
|
+
<ANCHOR id="cairo-font-options-get-antialias" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-get-antialias">
|
381
|
+
<ANCHOR id="cairo-subpixel-order-t" href="cairo/cairo-cairo-font-options-t.html#cairo-subpixel-order-t">
|
382
|
+
<ANCHOR id="CAIRO-SUBPIXEL-ORDER-DEFAULT:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-SUBPIXEL-ORDER-DEFAULT:CAPS">
|
383
|
+
<ANCHOR id="CAIRO-SUBPIXEL-ORDER-RGB:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-SUBPIXEL-ORDER-RGB:CAPS">
|
384
|
+
<ANCHOR id="CAIRO-SUBPIXEL-ORDER-BGR:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-SUBPIXEL-ORDER-BGR:CAPS">
|
385
|
+
<ANCHOR id="CAIRO-SUBPIXEL-ORDER-VRGB:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-SUBPIXEL-ORDER-VRGB:CAPS">
|
386
|
+
<ANCHOR id="CAIRO-SUBPIXEL-ORDER-VBGR:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-SUBPIXEL-ORDER-VBGR:CAPS">
|
387
|
+
<ANCHOR id="cairo-font-options-set-subpixel-order" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-set-subpixel-order">
|
388
|
+
<ANCHOR id="cairo-font-options-get-subpixel-order" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-get-subpixel-order">
|
389
|
+
<ANCHOR id="cairo-hint-style-t" href="cairo/cairo-cairo-font-options-t.html#cairo-hint-style-t">
|
390
|
+
<ANCHOR id="CAIRO-HINT-STYLE-DEFAULT:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-STYLE-DEFAULT:CAPS">
|
391
|
+
<ANCHOR id="CAIRO-HINT-STYLE-NONE:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-STYLE-NONE:CAPS">
|
392
|
+
<ANCHOR id="CAIRO-HINT-STYLE-SLIGHT:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-STYLE-SLIGHT:CAPS">
|
393
|
+
<ANCHOR id="CAIRO-HINT-STYLE-MEDIUM:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-STYLE-MEDIUM:CAPS">
|
394
|
+
<ANCHOR id="CAIRO-HINT-STYLE-FULL:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-STYLE-FULL:CAPS">
|
395
|
+
<ANCHOR id="cairo-font-options-set-hint-style" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-set-hint-style">
|
396
|
+
<ANCHOR id="cairo-font-options-get-hint-style" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-get-hint-style">
|
397
|
+
<ANCHOR id="cairo-hint-metrics-t" href="cairo/cairo-cairo-font-options-t.html#cairo-hint-metrics-t">
|
398
|
+
<ANCHOR id="CAIRO-HINT-METRICS-DEFAULT:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-METRICS-DEFAULT:CAPS">
|
399
|
+
<ANCHOR id="CAIRO-HINT-METRICS-OFF:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-METRICS-OFF:CAPS">
|
400
|
+
<ANCHOR id="CAIRO-HINT-METRICS-ON:CAPS" href="cairo/cairo-cairo-font-options-t.html#CAIRO-HINT-METRICS-ON:CAPS">
|
401
|
+
<ANCHOR id="cairo-font-options-set-hint-metrics" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-set-hint-metrics">
|
402
|
+
<ANCHOR id="cairo-font-options-get-hint-metrics" href="cairo/cairo-cairo-font-options-t.html#cairo-font-options-get-hint-metrics">
|
403
|
+
<ANCHOR id="cairo-cairo-font-options-t.see-also" href="cairo/cairo-cairo-font-options-t.html#cairo-cairo-font-options-t.see-also">
|
404
|
+
<ANCHOR id="cairo-FreeType-Fonts" href="cairo/cairo-FreeType-Fonts.html">
|
405
|
+
<ANCHOR id="cairo-FreeType-Fonts.synopsis" href="cairo/cairo-FreeType-Fonts.html#cairo-FreeType-Fonts.synopsis">
|
406
|
+
<ANCHOR id="cairo-FreeType-Fonts.description" href="cairo/cairo-FreeType-Fonts.html#cairo-FreeType-Fonts.description">
|
407
|
+
<ANCHOR id="cairo-FreeType-Fonts.details" href="cairo/cairo-FreeType-Fonts.html#cairo-FreeType-Fonts.details">
|
408
|
+
<ANCHOR id="CAIRO-HAS-FT-FONT:CAPS" href="cairo/cairo-FreeType-Fonts.html#CAIRO-HAS-FT-FONT:CAPS">
|
409
|
+
<ANCHOR id="CAIRO-HAS-FC-FONT:CAPS" href="cairo/cairo-FreeType-Fonts.html#CAIRO-HAS-FC-FONT:CAPS">
|
410
|
+
<ANCHOR id="cairo-ft-font-face-create-for-ft-face" href="cairo/cairo-FreeType-Fonts.html#cairo-ft-font-face-create-for-ft-face">
|
411
|
+
<ANCHOR id="cairo-ft-font-face-create-for-pattern" href="cairo/cairo-FreeType-Fonts.html#cairo-ft-font-face-create-for-pattern">
|
412
|
+
<ANCHOR id="cairo-ft-font-options-substitute" href="cairo/cairo-FreeType-Fonts.html#cairo-ft-font-options-substitute">
|
413
|
+
<ANCHOR id="cairo-ft-scaled-font-lock-face" href="cairo/cairo-FreeType-Fonts.html#cairo-ft-scaled-font-lock-face">
|
414
|
+
<ANCHOR id="cairo-ft-scaled-font-unlock-face" href="cairo/cairo-FreeType-Fonts.html#cairo-ft-scaled-font-unlock-face">
|
415
|
+
<ANCHOR id="cairo-ft-synthesize-t" href="cairo/cairo-FreeType-Fonts.html#cairo-ft-synthesize-t">
|
416
|
+
<ANCHOR id="CAIRO-FT-SYNTHESIZE-BOLD:CAPS" href="cairo/cairo-FreeType-Fonts.html#CAIRO-FT-SYNTHESIZE-BOLD:CAPS">
|
417
|
+
<ANCHOR id="CAIRO-FT-SYNTHESIZE-OBLIQUE:CAPS" href="cairo/cairo-FreeType-Fonts.html#CAIRO-FT-SYNTHESIZE-OBLIQUE:CAPS">
|
418
|
+
<ANCHOR id="cairo-ft-font-face-get-synthesize" href="cairo/cairo-FreeType-Fonts.html#cairo-ft-font-face-get-synthesize">
|
419
|
+
<ANCHOR id="cairo-ft-font-face-set-synthesize" href="cairo/cairo-FreeType-Fonts.html#cairo-ft-font-face-set-synthesize">
|
420
|
+
<ANCHOR id="cairo-ft-font-face-unset-synthesize" href="cairo/cairo-FreeType-Fonts.html#cairo-ft-font-face-unset-synthesize">
|
421
|
+
<ANCHOR id="cairo-FreeType-Fonts.see-also" href="cairo/cairo-FreeType-Fonts.html#cairo-FreeType-Fonts.see-also">
|
422
|
+
<ANCHOR id="cairo-Win32-Fonts" href="cairo/cairo-Win32-Fonts.html">
|
423
|
+
<ANCHOR id="cairo-Win32-Fonts.synopsis" href="cairo/cairo-Win32-Fonts.html#cairo-Win32-Fonts.synopsis">
|
424
|
+
<ANCHOR id="cairo-Win32-Fonts.description" href="cairo/cairo-Win32-Fonts.html#cairo-Win32-Fonts.description">
|
425
|
+
<ANCHOR id="cairo-Win32-Fonts.details" href="cairo/cairo-Win32-Fonts.html#cairo-Win32-Fonts.details">
|
426
|
+
<ANCHOR id="CAIRO-HAS-WIN32-FONT:CAPS" href="cairo/cairo-Win32-Fonts.html#CAIRO-HAS-WIN32-FONT:CAPS">
|
427
|
+
<ANCHOR id="cairo-win32-font-face-create-for-logfontw" href="cairo/cairo-Win32-Fonts.html#cairo-win32-font-face-create-for-logfontw">
|
428
|
+
<ANCHOR id="cairo-win32-font-face-create-for-hfont" href="cairo/cairo-Win32-Fonts.html#cairo-win32-font-face-create-for-hfont">
|
429
|
+
<ANCHOR id="cairo-win32-font-face-create-for-logfontw-hfont" href="cairo/cairo-Win32-Fonts.html#cairo-win32-font-face-create-for-logfontw-hfont">
|
430
|
+
<ANCHOR id="cairo-win32-scaled-font-select-font" href="cairo/cairo-Win32-Fonts.html#cairo-win32-scaled-font-select-font">
|
431
|
+
<ANCHOR id="cairo-win32-scaled-font-done-font" href="cairo/cairo-Win32-Fonts.html#cairo-win32-scaled-font-done-font">
|
432
|
+
<ANCHOR id="cairo-win32-scaled-font-get-metrics-factor" href="cairo/cairo-Win32-Fonts.html#cairo-win32-scaled-font-get-metrics-factor">
|
433
|
+
<ANCHOR id="cairo-win32-scaled-font-get-logical-to-device" href="cairo/cairo-Win32-Fonts.html#cairo-win32-scaled-font-get-logical-to-device">
|
434
|
+
<ANCHOR id="cairo-win32-scaled-font-get-device-to-logical" href="cairo/cairo-Win32-Fonts.html#cairo-win32-scaled-font-get-device-to-logical">
|
435
|
+
<ANCHOR id="cairo-Win32-Fonts.see-also" href="cairo/cairo-Win32-Fonts.html#cairo-Win32-Fonts.see-also">
|
436
|
+
<ANCHOR id="cairo-Quartz-(CGFont)-Fonts" href="cairo/cairo-Quartz-(CGFont)-Fonts.html">
|
437
|
+
<ANCHOR id="cairo-Quartz-(CGFont)-Fonts.synopsis" href="cairo/cairo-Quartz-(CGFont)-Fonts.html#cairo-Quartz-(CGFont)-Fonts.synopsis">
|
438
|
+
<ANCHOR id="cairo-Quartz-(CGFont)-Fonts.description" href="cairo/cairo-Quartz-(CGFont)-Fonts.html#cairo-Quartz-(CGFont)-Fonts.description">
|
439
|
+
<ANCHOR id="cairo-Quartz-(CGFont)-Fonts.details" href="cairo/cairo-Quartz-(CGFont)-Fonts.html#cairo-Quartz-(CGFont)-Fonts.details">
|
440
|
+
<ANCHOR id="CAIRO-HAS-QUARTZ-FONT:CAPS" href="cairo/cairo-Quartz-(CGFont)-Fonts.html#CAIRO-HAS-QUARTZ-FONT:CAPS">
|
441
|
+
<ANCHOR id="cairo-quartz-font-face-create-for-cgfont" href="cairo/cairo-Quartz-(CGFont)-Fonts.html#cairo-quartz-font-face-create-for-cgfont">
|
442
|
+
<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">
|
443
|
+
<ANCHOR id="cairo-Quartz-(CGFont)-Fonts.see-also" href="cairo/cairo-Quartz-(CGFont)-Fonts.html#cairo-Quartz-(CGFont)-Fonts.see-also">
|
444
|
+
<ANCHOR id="cairo-User-Fonts" href="cairo/cairo-User-Fonts.html">
|
445
|
+
<ANCHOR id="cairo-User-Fonts.synopsis" href="cairo/cairo-User-Fonts.html#cairo-User-Fonts.synopsis">
|
446
|
+
<ANCHOR id="cairo-User-Fonts.description" href="cairo/cairo-User-Fonts.html#cairo-User-Fonts.description">
|
447
|
+
<ANCHOR id="cairo-User-Fonts.details" href="cairo/cairo-User-Fonts.html#cairo-User-Fonts.details">
|
448
|
+
<ANCHOR id="CAIRO-HAS-USER-FONT:CAPS" href="cairo/cairo-User-Fonts.html#CAIRO-HAS-USER-FONT:CAPS">
|
449
|
+
<ANCHOR id="cairo-user-scaled-font-init-func-t" href="cairo/cairo-User-Fonts.html#cairo-user-scaled-font-init-func-t">
|
450
|
+
<ANCHOR id="cairo-user-scaled-font-render-glyph-func-t" href="cairo/cairo-User-Fonts.html#cairo-user-scaled-font-render-glyph-func-t">
|
451
|
+
<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">
|
452
|
+
<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">
|
453
|
+
<ANCHOR id="cairo-user-font-face-create" href="cairo/cairo-User-Fonts.html#cairo-user-font-face-create">
|
454
|
+
<ANCHOR id="cairo-user-font-face-set-init-func" href="cairo/cairo-User-Fonts.html#cairo-user-font-face-set-init-func">
|
455
|
+
<ANCHOR id="cairo-user-font-face-get-init-func" href="cairo/cairo-User-Fonts.html#cairo-user-font-face-get-init-func">
|
456
|
+
<ANCHOR id="cairo-user-font-face-set-render-glyph-func" href="cairo/cairo-User-Fonts.html#cairo-user-font-face-set-render-glyph-func">
|
457
|
+
<ANCHOR id="cairo-user-font-face-get-render-glyph-func" href="cairo/cairo-User-Fonts.html#cairo-user-font-face-get-render-glyph-func">
|
458
|
+
<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">
|
459
|
+
<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">
|
460
|
+
<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">
|
461
|
+
<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">
|
462
|
+
<ANCHOR id="cairo-cairo-device-t" href="cairo/cairo-cairo-device-t.html">
|
463
|
+
<ANCHOR id="cairo-cairo-device-t.synopsis" href="cairo/cairo-cairo-device-t.html#cairo-cairo-device-t.synopsis">
|
464
|
+
<ANCHOR id="cairo-cairo-device-t.description" href="cairo/cairo-cairo-device-t.html#cairo-cairo-device-t.description">
|
465
|
+
<ANCHOR id="cairo-cairo-device-t.details" href="cairo/cairo-cairo-device-t.html#cairo-cairo-device-t.details">
|
466
|
+
<ANCHOR id="cairo-device-t" href="cairo/cairo-cairo-device-t.html#cairo-device-t">
|
467
|
+
<ANCHOR id="cairo-device-reference" href="cairo/cairo-cairo-device-t.html#cairo-device-reference">
|
468
|
+
<ANCHOR id="cairo-device-destroy" href="cairo/cairo-cairo-device-t.html#cairo-device-destroy">
|
469
|
+
<ANCHOR id="cairo-device-status" href="cairo/cairo-cairo-device-t.html#cairo-device-status">
|
470
|
+
<ANCHOR id="cairo-device-finish" href="cairo/cairo-cairo-device-t.html#cairo-device-finish">
|
471
|
+
<ANCHOR id="cairo-device-flush" href="cairo/cairo-cairo-device-t.html#cairo-device-flush">
|
472
|
+
<ANCHOR id="cairo-device-type-t" href="cairo/cairo-cairo-device-t.html#cairo-device-type-t">
|
473
|
+
<ANCHOR id="CAIRO-DEVICE-TYPE-DRM:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-DRM:CAPS">
|
474
|
+
<ANCHOR id="CAIRO-DEVICE-TYPE-GL:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-GL:CAPS">
|
475
|
+
<ANCHOR id="CAIRO-DEVICE-TYPE-SCRIPT:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-SCRIPT:CAPS">
|
476
|
+
<ANCHOR id="CAIRO-DEVICE-TYPE-XCB:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-XCB:CAPS">
|
477
|
+
<ANCHOR id="CAIRO-DEVICE-TYPE-XLIB:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-XLIB:CAPS">
|
478
|
+
<ANCHOR id="CAIRO-DEVICE-TYPE-XML:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-XML:CAPS">
|
479
|
+
<ANCHOR id="CAIRO-DEVICE-TYPE-COGL:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-COGL:CAPS">
|
480
|
+
<ANCHOR id="CAIRO-DEVICE-TYPE-WIN32:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-WIN32:CAPS">
|
481
|
+
<ANCHOR id="CAIRO-DEVICE-TYPE-INVALID:CAPS" href="cairo/cairo-cairo-device-t.html#CAIRO-DEVICE-TYPE-INVALID:CAPS">
|
482
|
+
<ANCHOR id="cairo-device-get-type" href="cairo/cairo-cairo-device-t.html#cairo-device-get-type">
|
483
|
+
<ANCHOR id="cairo-device-get-reference-count" href="cairo/cairo-cairo-device-t.html#cairo-device-get-reference-count">
|
484
|
+
<ANCHOR id="cairo-device-set-user-data" href="cairo/cairo-cairo-device-t.html#cairo-device-set-user-data">
|
485
|
+
<ANCHOR id="cairo-device-get-user-data" href="cairo/cairo-cairo-device-t.html#cairo-device-get-user-data">
|
486
|
+
<ANCHOR id="cairo-device-acquire" href="cairo/cairo-cairo-device-t.html#cairo-device-acquire">
|
487
|
+
<ANCHOR id="cairo-device-release" href="cairo/cairo-cairo-device-t.html#cairo-device-release">
|
488
|
+
<ANCHOR id="cairo-device-observer-elapsed" href="cairo/cairo-cairo-device-t.html#cairo-device-observer-elapsed">
|
489
|
+
<ANCHOR id="cairo-device-observer-fill-elapsed" href="cairo/cairo-cairo-device-t.html#cairo-device-observer-fill-elapsed">
|
490
|
+
<ANCHOR id="cairo-device-observer-glyphs-elapsed" href="cairo/cairo-cairo-device-t.html#cairo-device-observer-glyphs-elapsed">
|
491
|
+
<ANCHOR id="cairo-device-observer-mask-elapsed" href="cairo/cairo-cairo-device-t.html#cairo-device-observer-mask-elapsed">
|
492
|
+
<ANCHOR id="cairo-device-observer-paint-elapsed" href="cairo/cairo-cairo-device-t.html#cairo-device-observer-paint-elapsed">
|
493
|
+
<ANCHOR id="cairo-device-observer-print" href="cairo/cairo-cairo-device-t.html#cairo-device-observer-print">
|
494
|
+
<ANCHOR id="cairo-device-observer-stroke-elapsed" href="cairo/cairo-cairo-device-t.html#cairo-device-observer-stroke-elapsed">
|
495
|
+
<ANCHOR id="cairo-cairo-device-t.see-also" href="cairo/cairo-cairo-device-t.html#cairo-cairo-device-t.see-also">
|
496
|
+
<ANCHOR id="cairo-cairo-surface-t" href="cairo/cairo-cairo-surface-t.html">
|
497
|
+
<ANCHOR id="cairo-cairo-surface-t.synopsis" href="cairo/cairo-cairo-surface-t.html#cairo-cairo-surface-t.synopsis">
|
498
|
+
<ANCHOR id="cairo-cairo-surface-t.description" href="cairo/cairo-cairo-surface-t.html#cairo-cairo-surface-t.description">
|
499
|
+
<ANCHOR id="cairo-cairo-surface-t.details" href="cairo/cairo-cairo-surface-t.html#cairo-cairo-surface-t.details">
|
500
|
+
<ANCHOR id="CAIRO-HAS-MIME-SURFACE:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-HAS-MIME-SURFACE:CAPS">
|
501
|
+
<ANCHOR id="CAIRO-MIME-TYPE-JBIG2:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-JBIG2:CAPS">
|
502
|
+
<ANCHOR id="CAIRO-MIME-TYPE-JBIG2-GLOBAL:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-JBIG2-GLOBAL:CAPS">
|
503
|
+
<ANCHOR id="CAIRO-MIME-TYPE-JBIG2-GLOBAL-ID:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-JBIG2-GLOBAL-ID:CAPS">
|
504
|
+
<ANCHOR id="CAIRO-MIME-TYPE-JP2:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-JP2:CAPS">
|
505
|
+
<ANCHOR id="CAIRO-MIME-TYPE-JPEG:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-JPEG:CAPS">
|
506
|
+
<ANCHOR id="CAIRO-MIME-TYPE-PNG:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-PNG:CAPS">
|
507
|
+
<ANCHOR id="CAIRO-MIME-TYPE-URI:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-URI:CAPS">
|
508
|
+
<ANCHOR id="CAIRO-MIME-TYPE-UNIQUE-ID:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-UNIQUE-ID:CAPS">
|
509
|
+
<ANCHOR id="cairo-surface-t" href="cairo/cairo-cairo-surface-t.html#cairo-surface-t">
|
510
|
+
<ANCHOR id="cairo-content-t" href="cairo/cairo-cairo-surface-t.html#cairo-content-t">
|
511
|
+
<ANCHOR id="CAIRO-CONTENT-COLOR:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-CONTENT-COLOR:CAPS">
|
512
|
+
<ANCHOR id="CAIRO-CONTENT-ALPHA:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-CONTENT-ALPHA:CAPS">
|
513
|
+
<ANCHOR id="CAIRO-CONTENT-COLOR-ALPHA:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-CONTENT-COLOR-ALPHA:CAPS">
|
514
|
+
<ANCHOR id="cairo-surface-create-similar" href="cairo/cairo-cairo-surface-t.html#cairo-surface-create-similar">
|
515
|
+
<ANCHOR id="cairo-surface-create-similar-image" href="cairo/cairo-cairo-surface-t.html#cairo-surface-create-similar-image">
|
516
|
+
<ANCHOR id="cairo-surface-create-for-rectangle" href="cairo/cairo-cairo-surface-t.html#cairo-surface-create-for-rectangle">
|
517
|
+
<ANCHOR id="cairo-surface-reference" href="cairo/cairo-cairo-surface-t.html#cairo-surface-reference">
|
518
|
+
<ANCHOR id="cairo-surface-destroy" href="cairo/cairo-cairo-surface-t.html#cairo-surface-destroy">
|
519
|
+
<ANCHOR id="cairo-surface-status" href="cairo/cairo-cairo-surface-t.html#cairo-surface-status">
|
520
|
+
<ANCHOR id="cairo-surface-finish" href="cairo/cairo-cairo-surface-t.html#cairo-surface-finish">
|
521
|
+
<ANCHOR id="cairo-surface-flush" href="cairo/cairo-cairo-surface-t.html#cairo-surface-flush">
|
522
|
+
<ANCHOR id="cairo-surface-get-device" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-device">
|
523
|
+
<ANCHOR id="cairo-surface-get-font-options" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-font-options">
|
524
|
+
<ANCHOR id="cairo-surface-get-content" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-content">
|
525
|
+
<ANCHOR id="cairo-surface-mark-dirty" href="cairo/cairo-cairo-surface-t.html#cairo-surface-mark-dirty">
|
526
|
+
<ANCHOR id="cairo-surface-mark-dirty-rectangle" href="cairo/cairo-cairo-surface-t.html#cairo-surface-mark-dirty-rectangle">
|
527
|
+
<ANCHOR id="cairo-surface-set-device-offset" href="cairo/cairo-cairo-surface-t.html#cairo-surface-set-device-offset">
|
528
|
+
<ANCHOR id="cairo-surface-get-device-offset" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-device-offset">
|
529
|
+
<ANCHOR id="cairo-surface-get-device-scale" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-device-scale">
|
530
|
+
<ANCHOR id="cairo-surface-set-device-scale" href="cairo/cairo-cairo-surface-t.html#cairo-surface-set-device-scale">
|
531
|
+
<ANCHOR id="cairo-surface-set-fallback-resolution" href="cairo/cairo-cairo-surface-t.html#cairo-surface-set-fallback-resolution">
|
532
|
+
<ANCHOR id="cairo-surface-get-fallback-resolution" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-fallback-resolution">
|
533
|
+
<ANCHOR id="cairo-surface-type-t" href="cairo/cairo-cairo-surface-t.html#cairo-surface-type-t">
|
534
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-IMAGE:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-IMAGE:CAPS">
|
535
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-PDF:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-PDF:CAPS">
|
536
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-PS:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-PS:CAPS">
|
537
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-XLIB:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-XLIB:CAPS">
|
538
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-XCB:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-XCB:CAPS">
|
539
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-GLITZ:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-GLITZ:CAPS">
|
540
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-QUARTZ:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-QUARTZ:CAPS">
|
541
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-WIN32:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-WIN32:CAPS">
|
542
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-BEOS:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-BEOS:CAPS">
|
543
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-DIRECTFB:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-DIRECTFB:CAPS">
|
544
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-SVG:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-SVG:CAPS">
|
545
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-OS2:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-OS2:CAPS">
|
546
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-WIN32-PRINTING:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-WIN32-PRINTING:CAPS">
|
547
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-QUARTZ-IMAGE:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-QUARTZ-IMAGE:CAPS">
|
548
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-SCRIPT:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-SCRIPT:CAPS">
|
549
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-QT:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-QT:CAPS">
|
550
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-RECORDING:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-RECORDING:CAPS">
|
551
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-VG:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-VG:CAPS">
|
552
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-GL:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-GL:CAPS">
|
553
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-DRM:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-DRM:CAPS">
|
554
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-TEE:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-TEE:CAPS">
|
555
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-XML:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-XML:CAPS">
|
556
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-SKIA:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-SKIA:CAPS">
|
557
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-SUBSURFACE:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-SUBSURFACE:CAPS">
|
558
|
+
<ANCHOR id="CAIRO-SURFACE-TYPE-COGL:CAPS" href="cairo/cairo-cairo-surface-t.html#CAIRO-SURFACE-TYPE-COGL:CAPS">
|
559
|
+
<ANCHOR id="cairo-surface-get-type" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-type">
|
560
|
+
<ANCHOR id="cairo-surface-get-reference-count" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-reference-count">
|
561
|
+
<ANCHOR id="cairo-surface-set-user-data" href="cairo/cairo-cairo-surface-t.html#cairo-surface-set-user-data">
|
562
|
+
<ANCHOR id="cairo-surface-get-user-data" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-user-data">
|
563
|
+
<ANCHOR id="cairo-surface-copy-page" href="cairo/cairo-cairo-surface-t.html#cairo-surface-copy-page">
|
564
|
+
<ANCHOR id="cairo-surface-show-page" href="cairo/cairo-cairo-surface-t.html#cairo-surface-show-page">
|
565
|
+
<ANCHOR id="cairo-surface-has-show-text-glyphs" href="cairo/cairo-cairo-surface-t.html#cairo-surface-has-show-text-glyphs">
|
566
|
+
<ANCHOR id="cairo-surface-set-mime-data" href="cairo/cairo-cairo-surface-t.html#cairo-surface-set-mime-data">
|
567
|
+
<ANCHOR id="cairo-surface-get-mime-data" href="cairo/cairo-cairo-surface-t.html#cairo-surface-get-mime-data">
|
568
|
+
<ANCHOR id="cairo-surface-supports-mime-type" href="cairo/cairo-cairo-surface-t.html#cairo-surface-supports-mime-type">
|
569
|
+
<ANCHOR id="cairo-surface-map-to-image" href="cairo/cairo-cairo-surface-t.html#cairo-surface-map-to-image">
|
570
|
+
<ANCHOR id="cairo-surface-unmap-image" href="cairo/cairo-cairo-surface-t.html#cairo-surface-unmap-image">
|
571
|
+
<ANCHOR id="cairo-cairo-surface-t.see-also" href="cairo/cairo-cairo-surface-t.html#cairo-cairo-surface-t.see-also">
|
572
|
+
<ANCHOR id="cairo-Image-Surfaces" href="cairo/cairo-Image-Surfaces.html">
|
573
|
+
<ANCHOR id="cairo-Image-Surfaces.synopsis" href="cairo/cairo-Image-Surfaces.html#cairo-Image-Surfaces.synopsis">
|
574
|
+
<ANCHOR id="cairo-Image-Surfaces.description" href="cairo/cairo-Image-Surfaces.html#cairo-Image-Surfaces.description">
|
575
|
+
<ANCHOR id="cairo-Image-Surfaces.details" href="cairo/cairo-Image-Surfaces.html#cairo-Image-Surfaces.details">
|
576
|
+
<ANCHOR id="CAIRO-HAS-IMAGE-SURFACE:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-HAS-IMAGE-SURFACE:CAPS">
|
577
|
+
<ANCHOR id="cairo-format-t" href="cairo/cairo-Image-Surfaces.html#cairo-format-t">
|
578
|
+
<ANCHOR id="CAIRO-FORMAT-INVALID:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-FORMAT-INVALID:CAPS">
|
579
|
+
<ANCHOR id="CAIRO-FORMAT-ARGB32:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-FORMAT-ARGB32:CAPS">
|
580
|
+
<ANCHOR id="CAIRO-FORMAT-RGB24:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-FORMAT-RGB24:CAPS">
|
581
|
+
<ANCHOR id="CAIRO-FORMAT-A8:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-FORMAT-A8:CAPS">
|
582
|
+
<ANCHOR id="CAIRO-FORMAT-A1:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-FORMAT-A1:CAPS">
|
583
|
+
<ANCHOR id="CAIRO-FORMAT-RGB16-565:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-FORMAT-RGB16-565:CAPS">
|
584
|
+
<ANCHOR id="CAIRO-FORMAT-RGB30:CAPS" href="cairo/cairo-Image-Surfaces.html#CAIRO-FORMAT-RGB30:CAPS">
|
585
|
+
<ANCHOR id="cairo-format-stride-for-width" href="cairo/cairo-Image-Surfaces.html#cairo-format-stride-for-width">
|
586
|
+
<ANCHOR id="cairo-image-surface-create" href="cairo/cairo-Image-Surfaces.html#cairo-image-surface-create">
|
587
|
+
<ANCHOR id="cairo-image-surface-create-for-data" href="cairo/cairo-Image-Surfaces.html#cairo-image-surface-create-for-data">
|
588
|
+
<ANCHOR id="cairo-image-surface-get-data" href="cairo/cairo-Image-Surfaces.html#cairo-image-surface-get-data">
|
589
|
+
<ANCHOR id="cairo-image-surface-get-format" href="cairo/cairo-Image-Surfaces.html#cairo-image-surface-get-format">
|
590
|
+
<ANCHOR id="cairo-image-surface-get-width" href="cairo/cairo-Image-Surfaces.html#cairo-image-surface-get-width">
|
591
|
+
<ANCHOR id="cairo-image-surface-get-height" href="cairo/cairo-Image-Surfaces.html#cairo-image-surface-get-height">
|
592
|
+
<ANCHOR id="cairo-image-surface-get-stride" href="cairo/cairo-Image-Surfaces.html#cairo-image-surface-get-stride">
|
593
|
+
<ANCHOR id="cairo-Image-Surfaces.see-also" href="cairo/cairo-Image-Surfaces.html#cairo-Image-Surfaces.see-also">
|
594
|
+
<ANCHOR id="cairo-PDF-Surfaces" href="cairo/cairo-PDF-Surfaces.html">
|
595
|
+
<ANCHOR id="cairo-PDF-Surfaces.synopsis" href="cairo/cairo-PDF-Surfaces.html#cairo-PDF-Surfaces.synopsis">
|
596
|
+
<ANCHOR id="cairo-PDF-Surfaces.description" href="cairo/cairo-PDF-Surfaces.html#cairo-PDF-Surfaces.description">
|
597
|
+
<ANCHOR id="cairo-PDF-Surfaces.details" href="cairo/cairo-PDF-Surfaces.html#cairo-PDF-Surfaces.details">
|
598
|
+
<ANCHOR id="CAIRO-HAS-PDF-SURFACE:CAPS" href="cairo/cairo-PDF-Surfaces.html#CAIRO-HAS-PDF-SURFACE:CAPS">
|
599
|
+
<ANCHOR id="cairo-pdf-surface-create" href="cairo/cairo-PDF-Surfaces.html#cairo-pdf-surface-create">
|
600
|
+
<ANCHOR id="cairo-pdf-surface-create-for-stream" href="cairo/cairo-PDF-Surfaces.html#cairo-pdf-surface-create-for-stream">
|
601
|
+
<ANCHOR id="cairo-pdf-surface-restrict-to-version" href="cairo/cairo-PDF-Surfaces.html#cairo-pdf-surface-restrict-to-version">
|
602
|
+
<ANCHOR id="cairo-pdf-version-t" href="cairo/cairo-PDF-Surfaces.html#cairo-pdf-version-t">
|
603
|
+
<ANCHOR id="CAIRO-PDF-VERSION-1-4:CAPS" href="cairo/cairo-PDF-Surfaces.html#CAIRO-PDF-VERSION-1-4:CAPS">
|
604
|
+
<ANCHOR id="CAIRO-PDF-VERSION-1-5:CAPS" href="cairo/cairo-PDF-Surfaces.html#CAIRO-PDF-VERSION-1-5:CAPS">
|
605
|
+
<ANCHOR id="cairo-pdf-get-versions" href="cairo/cairo-PDF-Surfaces.html#cairo-pdf-get-versions">
|
606
|
+
<ANCHOR id="cairo-pdf-version-to-string" href="cairo/cairo-PDF-Surfaces.html#cairo-pdf-version-to-string">
|
607
|
+
<ANCHOR id="cairo-pdf-surface-set-size" href="cairo/cairo-PDF-Surfaces.html#cairo-pdf-surface-set-size">
|
608
|
+
<ANCHOR id="cairo-PDF-Surfaces.see-also" href="cairo/cairo-PDF-Surfaces.html#cairo-PDF-Surfaces.see-also">
|
609
|
+
<ANCHOR id="cairo-PNG-Support" href="cairo/cairo-PNG-Support.html">
|
610
|
+
<ANCHOR id="cairo-PNG-Support.synopsis" href="cairo/cairo-PNG-Support.html#cairo-PNG-Support.synopsis">
|
611
|
+
<ANCHOR id="cairo-PNG-Support.description" href="cairo/cairo-PNG-Support.html#cairo-PNG-Support.description">
|
612
|
+
<ANCHOR id="cairo-PNG-Support.details" href="cairo/cairo-PNG-Support.html#cairo-PNG-Support.details">
|
613
|
+
<ANCHOR id="CAIRO-HAS-PNG-FUNCTIONS:CAPS" href="cairo/cairo-PNG-Support.html#CAIRO-HAS-PNG-FUNCTIONS:CAPS">
|
614
|
+
<ANCHOR id="cairo-image-surface-create-from-png" href="cairo/cairo-PNG-Support.html#cairo-image-surface-create-from-png">
|
615
|
+
<ANCHOR id="cairo-read-func-t" href="cairo/cairo-PNG-Support.html#cairo-read-func-t">
|
616
|
+
<ANCHOR id="cairo-image-surface-create-from-png-stream" href="cairo/cairo-PNG-Support.html#cairo-image-surface-create-from-png-stream">
|
617
|
+
<ANCHOR id="cairo-surface-write-to-png" href="cairo/cairo-PNG-Support.html#cairo-surface-write-to-png">
|
618
|
+
<ANCHOR id="cairo-write-func-t" href="cairo/cairo-PNG-Support.html#cairo-write-func-t">
|
619
|
+
<ANCHOR id="cairo-surface-write-to-png-stream" href="cairo/cairo-PNG-Support.html#cairo-surface-write-to-png-stream">
|
620
|
+
<ANCHOR id="cairo-PNG-Support.see-also" href="cairo/cairo-PNG-Support.html#cairo-PNG-Support.see-also">
|
621
|
+
<ANCHOR id="cairo-PostScript-Surfaces" href="cairo/cairo-PostScript-Surfaces.html">
|
622
|
+
<ANCHOR id="cairo-PostScript-Surfaces.synopsis" href="cairo/cairo-PostScript-Surfaces.html#cairo-PostScript-Surfaces.synopsis">
|
623
|
+
<ANCHOR id="cairo-PostScript-Surfaces.description" href="cairo/cairo-PostScript-Surfaces.html#cairo-PostScript-Surfaces.description">
|
624
|
+
<ANCHOR id="cairo-PostScript-Surfaces.details" href="cairo/cairo-PostScript-Surfaces.html#cairo-PostScript-Surfaces.details">
|
625
|
+
<ANCHOR id="CAIRO-HAS-PS-SURFACE:CAPS" href="cairo/cairo-PostScript-Surfaces.html#CAIRO-HAS-PS-SURFACE:CAPS">
|
626
|
+
<ANCHOR id="cairo-ps-surface-create" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-create">
|
627
|
+
<ANCHOR id="cairo-ps-surface-create-for-stream" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-create-for-stream">
|
628
|
+
<ANCHOR id="cairo-ps-surface-restrict-to-level" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-restrict-to-level">
|
629
|
+
<ANCHOR id="cairo-ps-level-t" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-level-t">
|
630
|
+
<ANCHOR id="CAIRO-PS-LEVEL-2:CAPS" href="cairo/cairo-PostScript-Surfaces.html#CAIRO-PS-LEVEL-2:CAPS">
|
631
|
+
<ANCHOR id="CAIRO-PS-LEVEL-3:CAPS" href="cairo/cairo-PostScript-Surfaces.html#CAIRO-PS-LEVEL-3:CAPS">
|
632
|
+
<ANCHOR id="cairo-ps-get-levels" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-get-levels">
|
633
|
+
<ANCHOR id="cairo-ps-level-to-string" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-level-to-string">
|
634
|
+
<ANCHOR id="cairo-ps-surface-set-eps" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-set-eps">
|
635
|
+
<ANCHOR id="cairo-ps-surface-get-eps" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-get-eps">
|
636
|
+
<ANCHOR id="cairo-ps-surface-set-size" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-set-size">
|
637
|
+
<ANCHOR id="cairo-ps-surface-dsc-begin-setup" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-dsc-begin-setup">
|
638
|
+
<ANCHOR id="cairo-ps-surface-dsc-begin-page-setup" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-dsc-begin-page-setup">
|
639
|
+
<ANCHOR id="cairo-ps-surface-dsc-comment" href="cairo/cairo-PostScript-Surfaces.html#cairo-ps-surface-dsc-comment">
|
640
|
+
<ANCHOR id="cairo-PostScript-Surfaces.see-also" href="cairo/cairo-PostScript-Surfaces.html#cairo-PostScript-Surfaces.see-also">
|
641
|
+
<ANCHOR id="cairo-Recording-Surfaces" href="cairo/cairo-Recording-Surfaces.html">
|
642
|
+
<ANCHOR id="cairo-Recording-Surfaces.synopsis" href="cairo/cairo-Recording-Surfaces.html#cairo-Recording-Surfaces.synopsis">
|
643
|
+
<ANCHOR id="cairo-Recording-Surfaces.description" href="cairo/cairo-Recording-Surfaces.html#cairo-Recording-Surfaces.description">
|
644
|
+
<ANCHOR id="cairo-Recording-Surfaces.details" href="cairo/cairo-Recording-Surfaces.html#cairo-Recording-Surfaces.details">
|
645
|
+
<ANCHOR id="CAIRO-HAS-RECORDING-SURFACE:CAPS" href="cairo/cairo-Recording-Surfaces.html#CAIRO-HAS-RECORDING-SURFACE:CAPS">
|
646
|
+
<ANCHOR id="cairo-recording-surface-create" href="cairo/cairo-Recording-Surfaces.html#cairo-recording-surface-create">
|
647
|
+
<ANCHOR id="cairo-recording-surface-ink-extents" href="cairo/cairo-Recording-Surfaces.html#cairo-recording-surface-ink-extents">
|
648
|
+
<ANCHOR id="cairo-recording-surface-get-extents" href="cairo/cairo-Recording-Surfaces.html#cairo-recording-surface-get-extents">
|
649
|
+
<ANCHOR id="cairo-Recording-Surfaces.see-also" href="cairo/cairo-Recording-Surfaces.html#cairo-Recording-Surfaces.see-also">
|
650
|
+
<ANCHOR id="cairo-Win32-Surfaces" href="cairo/cairo-Win32-Surfaces.html">
|
651
|
+
<ANCHOR id="cairo-Win32-Surfaces.synopsis" href="cairo/cairo-Win32-Surfaces.html#cairo-Win32-Surfaces.synopsis">
|
652
|
+
<ANCHOR id="cairo-Win32-Surfaces.description" href="cairo/cairo-Win32-Surfaces.html#cairo-Win32-Surfaces.description">
|
653
|
+
<ANCHOR id="cairo-Win32-Surfaces.details" href="cairo/cairo-Win32-Surfaces.html#cairo-Win32-Surfaces.details">
|
654
|
+
<ANCHOR id="CAIRO-HAS-WIN32-SURFACE:CAPS" href="cairo/cairo-Win32-Surfaces.html#CAIRO-HAS-WIN32-SURFACE:CAPS">
|
655
|
+
<ANCHOR id="cairo-win32-surface-create" href="cairo/cairo-Win32-Surfaces.html#cairo-win32-surface-create">
|
656
|
+
<ANCHOR id="cairo-win32-surface-create-with-dib" href="cairo/cairo-Win32-Surfaces.html#cairo-win32-surface-create-with-dib">
|
657
|
+
<ANCHOR id="cairo-win32-surface-create-with-ddb" href="cairo/cairo-Win32-Surfaces.html#cairo-win32-surface-create-with-ddb">
|
658
|
+
<ANCHOR id="cairo-win32-printing-surface-create" href="cairo/cairo-Win32-Surfaces.html#cairo-win32-printing-surface-create">
|
659
|
+
<ANCHOR id="cairo-win32-surface-get-dc" href="cairo/cairo-Win32-Surfaces.html#cairo-win32-surface-get-dc">
|
660
|
+
<ANCHOR id="cairo-win32-surface-get-image" href="cairo/cairo-Win32-Surfaces.html#cairo-win32-surface-get-image">
|
661
|
+
<ANCHOR id="cairo-Win32-Surfaces.see-also" href="cairo/cairo-Win32-Surfaces.html#cairo-Win32-Surfaces.see-also">
|
662
|
+
<ANCHOR id="cairo-SVG-Surfaces" href="cairo/cairo-SVG-Surfaces.html">
|
663
|
+
<ANCHOR id="cairo-SVG-Surfaces.synopsis" href="cairo/cairo-SVG-Surfaces.html#cairo-SVG-Surfaces.synopsis">
|
664
|
+
<ANCHOR id="cairo-SVG-Surfaces.description" href="cairo/cairo-SVG-Surfaces.html#cairo-SVG-Surfaces.description">
|
665
|
+
<ANCHOR id="cairo-SVG-Surfaces.details" href="cairo/cairo-SVG-Surfaces.html#cairo-SVG-Surfaces.details">
|
666
|
+
<ANCHOR id="CAIRO-HAS-SVG-SURFACE:CAPS" href="cairo/cairo-SVG-Surfaces.html#CAIRO-HAS-SVG-SURFACE:CAPS">
|
667
|
+
<ANCHOR id="cairo-svg-surface-create" href="cairo/cairo-SVG-Surfaces.html#cairo-svg-surface-create">
|
668
|
+
<ANCHOR id="cairo-svg-surface-create-for-stream" href="cairo/cairo-SVG-Surfaces.html#cairo-svg-surface-create-for-stream">
|
669
|
+
<ANCHOR id="cairo-svg-surface-restrict-to-version" href="cairo/cairo-SVG-Surfaces.html#cairo-svg-surface-restrict-to-version">
|
670
|
+
<ANCHOR id="cairo-svg-version-t" href="cairo/cairo-SVG-Surfaces.html#cairo-svg-version-t">
|
671
|
+
<ANCHOR id="CAIRO-SVG-VERSION-1-1:CAPS" href="cairo/cairo-SVG-Surfaces.html#CAIRO-SVG-VERSION-1-1:CAPS">
|
672
|
+
<ANCHOR id="CAIRO-SVG-VERSION-1-2:CAPS" href="cairo/cairo-SVG-Surfaces.html#CAIRO-SVG-VERSION-1-2:CAPS">
|
673
|
+
<ANCHOR id="cairo-svg-get-versions" href="cairo/cairo-SVG-Surfaces.html#cairo-svg-get-versions">
|
674
|
+
<ANCHOR id="cairo-svg-version-to-string" href="cairo/cairo-SVG-Surfaces.html#cairo-svg-version-to-string">
|
675
|
+
<ANCHOR id="cairo-SVG-Surfaces.see-also" href="cairo/cairo-SVG-Surfaces.html#cairo-SVG-Surfaces.see-also">
|
676
|
+
<ANCHOR id="cairo-Quartz-Surfaces" href="cairo/cairo-Quartz-Surfaces.html">
|
677
|
+
<ANCHOR id="cairo-Quartz-Surfaces.synopsis" href="cairo/cairo-Quartz-Surfaces.html#cairo-Quartz-Surfaces.synopsis">
|
678
|
+
<ANCHOR id="cairo-Quartz-Surfaces.description" href="cairo/cairo-Quartz-Surfaces.html#cairo-Quartz-Surfaces.description">
|
679
|
+
<ANCHOR id="cairo-Quartz-Surfaces.details" href="cairo/cairo-Quartz-Surfaces.html#cairo-Quartz-Surfaces.details">
|
680
|
+
<ANCHOR id="CAIRO-HAS-QUARTZ-SURFACE:CAPS" href="cairo/cairo-Quartz-Surfaces.html#CAIRO-HAS-QUARTZ-SURFACE:CAPS">
|
681
|
+
<ANCHOR id="cairo-quartz-surface-create" href="cairo/cairo-Quartz-Surfaces.html#cairo-quartz-surface-create">
|
682
|
+
<ANCHOR id="cairo-quartz-surface-create-for-cg-context" href="cairo/cairo-Quartz-Surfaces.html#cairo-quartz-surface-create-for-cg-context">
|
683
|
+
<ANCHOR id="cairo-quartz-surface-get-cg-context" href="cairo/cairo-Quartz-Surfaces.html#cairo-quartz-surface-get-cg-context">
|
684
|
+
<ANCHOR id="cairo-Quartz-Surfaces.see-also" href="cairo/cairo-Quartz-Surfaces.html#cairo-Quartz-Surfaces.see-also">
|
685
|
+
<ANCHOR id="cairo-XCB-Surfaces" href="cairo/cairo-XCB-Surfaces.html">
|
686
|
+
<ANCHOR id="cairo-XCB-Surfaces.synopsis" href="cairo/cairo-XCB-Surfaces.html#cairo-XCB-Surfaces.synopsis">
|
687
|
+
<ANCHOR id="cairo-XCB-Surfaces.description" href="cairo/cairo-XCB-Surfaces.html#cairo-XCB-Surfaces.description">
|
688
|
+
<ANCHOR id="cairo-XCB-Surfaces.details" href="cairo/cairo-XCB-Surfaces.html#cairo-XCB-Surfaces.details">
|
689
|
+
<ANCHOR id="CAIRO-HAS-XCB-SURFACE:CAPS" href="cairo/cairo-XCB-Surfaces.html#CAIRO-HAS-XCB-SURFACE:CAPS">
|
690
|
+
<ANCHOR id="CAIRO-HAS-XCB-SHM-FUNCTIONS:CAPS" href="cairo/cairo-XCB-Surfaces.html#CAIRO-HAS-XCB-SHM-FUNCTIONS:CAPS">
|
691
|
+
<ANCHOR id="cairo-xcb-surface-create" href="cairo/cairo-XCB-Surfaces.html#cairo-xcb-surface-create">
|
692
|
+
<ANCHOR id="cairo-xcb-surface-create-for-bitmap" href="cairo/cairo-XCB-Surfaces.html#cairo-xcb-surface-create-for-bitmap">
|
693
|
+
<ANCHOR id="cairo-xcb-surface-create-with-xrender-format" href="cairo/cairo-XCB-Surfaces.html#cairo-xcb-surface-create-with-xrender-format">
|
694
|
+
<ANCHOR id="cairo-xcb-surface-set-size" href="cairo/cairo-XCB-Surfaces.html#cairo-xcb-surface-set-size">
|
695
|
+
<ANCHOR id="cairo-xcb-surface-set-drawable" href="cairo/cairo-XCB-Surfaces.html#cairo-xcb-surface-set-drawable">
|
696
|
+
<ANCHOR id="cairo-xcb-device-get-connection" href="cairo/cairo-XCB-Surfaces.html#cairo-xcb-device-get-connection">
|
697
|
+
<ANCHOR id="cairo-xcb-device-debug-cap-xrender-version" href="cairo/cairo-XCB-Surfaces.html#cairo-xcb-device-debug-cap-xrender-version">
|
698
|
+
<ANCHOR id="cairo-xcb-device-debug-cap-xshm-version" href="cairo/cairo-XCB-Surfaces.html#cairo-xcb-device-debug-cap-xshm-version">
|
699
|
+
<ANCHOR id="cairo-xcb-device-debug-get-precision" href="cairo/cairo-XCB-Surfaces.html#cairo-xcb-device-debug-get-precision">
|
700
|
+
<ANCHOR id="cairo-xcb-device-debug-set-precision" href="cairo/cairo-XCB-Surfaces.html#cairo-xcb-device-debug-set-precision">
|
701
|
+
<ANCHOR id="cairo-XCB-Surfaces.see-also" href="cairo/cairo-XCB-Surfaces.html#cairo-XCB-Surfaces.see-also">
|
702
|
+
<ANCHOR id="cairo-XLib-Surfaces" href="cairo/cairo-XLib-Surfaces.html">
|
703
|
+
<ANCHOR id="cairo-XLib-Surfaces.synopsis" href="cairo/cairo-XLib-Surfaces.html#cairo-XLib-Surfaces.synopsis">
|
704
|
+
<ANCHOR id="cairo-XLib-Surfaces.description" href="cairo/cairo-XLib-Surfaces.html#cairo-XLib-Surfaces.description">
|
705
|
+
<ANCHOR id="cairo-XLib-Surfaces.details" href="cairo/cairo-XLib-Surfaces.html#cairo-XLib-Surfaces.details">
|
706
|
+
<ANCHOR id="CAIRO-HAS-XLIB-SURFACE:CAPS" href="cairo/cairo-XLib-Surfaces.html#CAIRO-HAS-XLIB-SURFACE:CAPS">
|
707
|
+
<ANCHOR id="cairo-xlib-surface-create" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-create">
|
708
|
+
<ANCHOR id="cairo-xlib-surface-create-for-bitmap" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-create-for-bitmap">
|
709
|
+
<ANCHOR id="cairo-xlib-surface-set-size" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-set-size">
|
710
|
+
<ANCHOR id="cairo-xlib-surface-get-display" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-get-display">
|
711
|
+
<ANCHOR id="cairo-xlib-surface-get-screen" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-get-screen">
|
712
|
+
<ANCHOR id="cairo-xlib-surface-set-drawable" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-set-drawable">
|
713
|
+
<ANCHOR id="cairo-xlib-surface-get-drawable" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-get-drawable">
|
714
|
+
<ANCHOR id="cairo-xlib-surface-get-visual" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-get-visual">
|
715
|
+
<ANCHOR id="cairo-xlib-surface-get-width" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-get-width">
|
716
|
+
<ANCHOR id="cairo-xlib-surface-get-height" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-get-height">
|
717
|
+
<ANCHOR id="cairo-xlib-surface-get-depth" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-surface-get-depth">
|
718
|
+
<ANCHOR id="cairo-xlib-device-debug-cap-xrender-version" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-device-debug-cap-xrender-version">
|
719
|
+
<ANCHOR id="cairo-xlib-device-debug-get-precision" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-device-debug-get-precision">
|
720
|
+
<ANCHOR id="cairo-xlib-device-debug-set-precision" href="cairo/cairo-XLib-Surfaces.html#cairo-xlib-device-debug-set-precision">
|
721
|
+
<ANCHOR id="cairo-XLib-Surfaces.see-also" href="cairo/cairo-XLib-Surfaces.html#cairo-XLib-Surfaces.see-also">
|
722
|
+
<ANCHOR id="cairo-XLib-XRender-Backend" href="cairo/cairo-XLib-XRender-Backend.html">
|
723
|
+
<ANCHOR id="cairo-XLib-XRender-Backend.synopsis" href="cairo/cairo-XLib-XRender-Backend.html#cairo-XLib-XRender-Backend.synopsis">
|
724
|
+
<ANCHOR id="cairo-XLib-XRender-Backend.description" href="cairo/cairo-XLib-XRender-Backend.html#cairo-XLib-XRender-Backend.description">
|
725
|
+
<ANCHOR id="cairo-XLib-XRender-Backend.details" href="cairo/cairo-XLib-XRender-Backend.html#cairo-XLib-XRender-Backend.details">
|
726
|
+
<ANCHOR id="CAIRO-HAS-XLIB-XRENDER-SURFACE:CAPS" href="cairo/cairo-XLib-XRender-Backend.html#CAIRO-HAS-XLIB-XRENDER-SURFACE:CAPS">
|
727
|
+
<ANCHOR id="cairo-xlib-surface-create-with-xrender-format" href="cairo/cairo-XLib-XRender-Backend.html#cairo-xlib-surface-create-with-xrender-format">
|
728
|
+
<ANCHOR id="cairo-xlib-surface-get-xrender-format" href="cairo/cairo-XLib-XRender-Backend.html#cairo-xlib-surface-get-xrender-format">
|
729
|
+
<ANCHOR id="cairo-XLib-XRender-Backend.see-also" href="cairo/cairo-XLib-XRender-Backend.html#cairo-XLib-XRender-Backend.see-also">
|
730
|
+
<ANCHOR id="cairo-Script-Surfaces" href="cairo/cairo-Script-Surfaces.html">
|
731
|
+
<ANCHOR id="cairo-Script-Surfaces.synopsis" href="cairo/cairo-Script-Surfaces.html#cairo-Script-Surfaces.synopsis">
|
732
|
+
<ANCHOR id="cairo-Script-Surfaces.description" href="cairo/cairo-Script-Surfaces.html#cairo-Script-Surfaces.description">
|
733
|
+
<ANCHOR id="cairo-Script-Surfaces.details" href="cairo/cairo-Script-Surfaces.html#cairo-Script-Surfaces.details">
|
734
|
+
<ANCHOR id="CAIRO-HAS-SCRIPT-SURFACE:CAPS" href="cairo/cairo-Script-Surfaces.html#CAIRO-HAS-SCRIPT-SURFACE:CAPS">
|
735
|
+
<ANCHOR id="cairo-script-create" href="cairo/cairo-Script-Surfaces.html#cairo-script-create">
|
736
|
+
<ANCHOR id="cairo-script-create-for-stream" href="cairo/cairo-Script-Surfaces.html#cairo-script-create-for-stream">
|
737
|
+
<ANCHOR id="cairo-script-from-recording-surface" href="cairo/cairo-Script-Surfaces.html#cairo-script-from-recording-surface">
|
738
|
+
<ANCHOR id="cairo-script-get-mode" href="cairo/cairo-Script-Surfaces.html#cairo-script-get-mode">
|
739
|
+
<ANCHOR id="cairo-script-mode-t" href="cairo/cairo-Script-Surfaces.html#cairo-script-mode-t">
|
740
|
+
<ANCHOR id="CAIRO-SCRIPT-MODE-ASCII:CAPS" href="cairo/cairo-Script-Surfaces.html#CAIRO-SCRIPT-MODE-ASCII:CAPS">
|
741
|
+
<ANCHOR id="CAIRO-SCRIPT-MODE-BINARY:CAPS" href="cairo/cairo-Script-Surfaces.html#CAIRO-SCRIPT-MODE-BINARY:CAPS">
|
742
|
+
<ANCHOR id="cairo-script-set-mode" href="cairo/cairo-Script-Surfaces.html#cairo-script-set-mode">
|
743
|
+
<ANCHOR id="cairo-script-surface-create" href="cairo/cairo-Script-Surfaces.html#cairo-script-surface-create">
|
744
|
+
<ANCHOR id="cairo-script-surface-create-for-target" href="cairo/cairo-Script-Surfaces.html#cairo-script-surface-create-for-target">
|
745
|
+
<ANCHOR id="cairo-script-write-comment" href="cairo/cairo-Script-Surfaces.html#cairo-script-write-comment">
|
746
|
+
<ANCHOR id="cairo-Script-Surfaces.see-also" href="cairo/cairo-Script-Surfaces.html#cairo-Script-Surfaces.see-also">
|
747
|
+
<ANCHOR id="cairo-cairo-matrix-t" href="cairo/cairo-cairo-matrix-t.html">
|
748
|
+
<ANCHOR id="cairo-cairo-matrix-t.synopsis" href="cairo/cairo-cairo-matrix-t.html#cairo-cairo-matrix-t.synopsis">
|
749
|
+
<ANCHOR id="cairo-cairo-matrix-t.description" href="cairo/cairo-cairo-matrix-t.html#cairo-cairo-matrix-t.description">
|
750
|
+
<ANCHOR id="cairo-cairo-matrix-t.details" href="cairo/cairo-cairo-matrix-t.html#cairo-cairo-matrix-t.details">
|
751
|
+
<ANCHOR id="cairo-matrix-t" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-t">
|
752
|
+
<ANCHOR id="cairo-matrix-init" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-init">
|
753
|
+
<ANCHOR id="cairo-matrix-init-identity" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-init-identity">
|
754
|
+
<ANCHOR id="cairo-matrix-init-translate" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-init-translate">
|
755
|
+
<ANCHOR id="cairo-matrix-init-scale" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-init-scale">
|
756
|
+
<ANCHOR id="cairo-matrix-init-rotate" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-init-rotate">
|
757
|
+
<ANCHOR id="cairo-matrix-translate" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-translate">
|
758
|
+
<ANCHOR id="cairo-matrix-scale" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-scale">
|
759
|
+
<ANCHOR id="cairo-matrix-rotate" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-rotate">
|
760
|
+
<ANCHOR id="cairo-matrix-invert" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-invert">
|
761
|
+
<ANCHOR id="cairo-matrix-multiply" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-multiply">
|
762
|
+
<ANCHOR id="cairo-matrix-transform-distance" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-transform-distance">
|
763
|
+
<ANCHOR id="cairo-matrix-transform-point" href="cairo/cairo-cairo-matrix-t.html#cairo-matrix-transform-point">
|
764
|
+
<ANCHOR id="cairo-cairo-matrix-t.see-also" href="cairo/cairo-cairo-matrix-t.html#cairo-cairo-matrix-t.see-also">
|
765
|
+
<ANCHOR id="cairo-Error-handling" href="cairo/cairo-Error-handling.html">
|
766
|
+
<ANCHOR id="cairo-Error-handling.synopsis" href="cairo/cairo-Error-handling.html#cairo-Error-handling.synopsis">
|
767
|
+
<ANCHOR id="cairo-Error-handling.description" href="cairo/cairo-Error-handling.html#cairo-Error-handling.description">
|
768
|
+
<ANCHOR id="cairo-Error-handling.details" href="cairo/cairo-Error-handling.html#cairo-Error-handling.details">
|
769
|
+
<ANCHOR id="cairo-status-t" href="cairo/cairo-Error-handling.html#cairo-status-t">
|
770
|
+
<ANCHOR id="CAIRO-STATUS-SUCCESS:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS">
|
771
|
+
<ANCHOR id="CAIRO-STATUS-NO-MEMORY:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-NO-MEMORY:CAPS">
|
772
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-RESTORE:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-RESTORE:CAPS">
|
773
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-POP-GROUP:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-POP-GROUP:CAPS">
|
774
|
+
<ANCHOR id="CAIRO-STATUS-NO-CURRENT-POINT:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-NO-CURRENT-POINT:CAPS">
|
775
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-MATRIX:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-MATRIX:CAPS">
|
776
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-STATUS:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-STATUS:CAPS">
|
777
|
+
<ANCHOR id="CAIRO-STATUS-NULL-POINTER:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-NULL-POINTER:CAPS">
|
778
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-STRING:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-STRING:CAPS">
|
779
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-PATH-DATA:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-PATH-DATA:CAPS">
|
780
|
+
<ANCHOR id="CAIRO-STATUS-READ-ERROR:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-READ-ERROR:CAPS">
|
781
|
+
<ANCHOR id="CAIRO-STATUS-WRITE-ERROR:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-WRITE-ERROR:CAPS">
|
782
|
+
<ANCHOR id="CAIRO-STATUS-SURFACE-FINISHED:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-SURFACE-FINISHED:CAPS">
|
783
|
+
<ANCHOR id="CAIRO-STATUS-SURFACE-TYPE-MISMATCH:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-SURFACE-TYPE-MISMATCH:CAPS">
|
784
|
+
<ANCHOR id="CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-PATTERN-TYPE-MISMATCH:CAPS">
|
785
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-CONTENT:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-CONTENT:CAPS">
|
786
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-FORMAT:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-FORMAT:CAPS">
|
787
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-VISUAL:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-VISUAL:CAPS">
|
788
|
+
<ANCHOR id="CAIRO-STATUS-FILE-NOT-FOUND:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-FILE-NOT-FOUND:CAPS">
|
789
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-DASH:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-DASH:CAPS">
|
790
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-DSC-COMMENT:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-DSC-COMMENT:CAPS">
|
791
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-INDEX:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-INDEX:CAPS">
|
792
|
+
<ANCHOR id="CAIRO-STATUS-CLIP-NOT-REPRESENTABLE:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-CLIP-NOT-REPRESENTABLE:CAPS">
|
793
|
+
<ANCHOR id="CAIRO-STATUS-TEMP-FILE-ERROR:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-TEMP-FILE-ERROR:CAPS">
|
794
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-STRIDE:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-STRIDE:CAPS">
|
795
|
+
<ANCHOR id="CAIRO-STATUS-FONT-TYPE-MISMATCH:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-FONT-TYPE-MISMATCH:CAPS">
|
796
|
+
<ANCHOR id="CAIRO-STATUS-USER-FONT-IMMUTABLE:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-USER-FONT-IMMUTABLE:CAPS">
|
797
|
+
<ANCHOR id="CAIRO-STATUS-USER-FONT-ERROR:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-USER-FONT-ERROR:CAPS">
|
798
|
+
<ANCHOR id="CAIRO-STATUS-NEGATIVE-COUNT:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-NEGATIVE-COUNT:CAPS">
|
799
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-CLUSTERS:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-CLUSTERS:CAPS">
|
800
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-SLANT:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-SLANT:CAPS">
|
801
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-WEIGHT:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-WEIGHT:CAPS">
|
802
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-SIZE:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-SIZE:CAPS">
|
803
|
+
<ANCHOR id="CAIRO-STATUS-USER-FONT-NOT-IMPLEMENTED:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-USER-FONT-NOT-IMPLEMENTED:CAPS">
|
804
|
+
<ANCHOR id="CAIRO-STATUS-DEVICE-TYPE-MISMATCH:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-DEVICE-TYPE-MISMATCH:CAPS">
|
805
|
+
<ANCHOR id="CAIRO-STATUS-DEVICE-ERROR:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-DEVICE-ERROR:CAPS">
|
806
|
+
<ANCHOR id="CAIRO-STATUS-INVALID-MESH-CONSTRUCTION:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-INVALID-MESH-CONSTRUCTION:CAPS">
|
807
|
+
<ANCHOR id="CAIRO-STATUS-DEVICE-FINISHED:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-DEVICE-FINISHED:CAPS">
|
808
|
+
<ANCHOR id="CAIRO-STATUS-JBIG2-GLOBAL-MISSING:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-JBIG2-GLOBAL-MISSING:CAPS">
|
809
|
+
<ANCHOR id="CAIRO-STATUS-LAST-STATUS:CAPS" href="cairo/cairo-Error-handling.html#CAIRO-STATUS-LAST-STATUS:CAPS">
|
810
|
+
<ANCHOR id="cairo-status-to-string" href="cairo/cairo-Error-handling.html#cairo-status-to-string">
|
811
|
+
<ANCHOR id="cairo-debug-reset-static-data" href="cairo/cairo-Error-handling.html#cairo-debug-reset-static-data">
|
812
|
+
<ANCHOR id="cairo-Error-handling.see-also" href="cairo/cairo-Error-handling.html#cairo-Error-handling.see-also">
|
813
|
+
<ANCHOR id="cairo-Version-Information" href="cairo/cairo-Version-Information.html">
|
814
|
+
<ANCHOR id="cairo-Version-Information.synopsis" href="cairo/cairo-Version-Information.html#cairo-Version-Information.synopsis">
|
815
|
+
<ANCHOR id="cairo-Version-Information.description" href="cairo/cairo-Version-Information.html#cairo-Version-Information.description">
|
816
|
+
<ANCHOR id="cairo-Version-Information.details" href="cairo/cairo-Version-Information.html#cairo-Version-Information.details">
|
817
|
+
<ANCHOR id="CAIRO-VERSION:CAPS" href="cairo/cairo-Version-Information.html#CAIRO-VERSION:CAPS">
|
818
|
+
<ANCHOR id="CAIRO-VERSION-MAJOR:CAPS" href="cairo/cairo-Version-Information.html#CAIRO-VERSION-MAJOR:CAPS">
|
819
|
+
<ANCHOR id="CAIRO-VERSION-MINOR:CAPS" href="cairo/cairo-Version-Information.html#CAIRO-VERSION-MINOR:CAPS">
|
820
|
+
<ANCHOR id="CAIRO-VERSION-MICRO:CAPS" href="cairo/cairo-Version-Information.html#CAIRO-VERSION-MICRO:CAPS">
|
821
|
+
<ANCHOR id="CAIRO-VERSION-STRING:CAPS" href="cairo/cairo-Version-Information.html#CAIRO-VERSION-STRING:CAPS">
|
822
|
+
<ANCHOR id="CAIRO-VERSION-ENCODE:CAPS" href="cairo/cairo-Version-Information.html#CAIRO-VERSION-ENCODE:CAPS">
|
823
|
+
<ANCHOR id="CAIRO-VERSION-STRINGIZE:CAPS" href="cairo/cairo-Version-Information.html#CAIRO-VERSION-STRINGIZE:CAPS">
|
824
|
+
<ANCHOR id="cairo-version" href="cairo/cairo-Version-Information.html#cairo-version">
|
825
|
+
<ANCHOR id="cairo-version-string" href="cairo/cairo-Version-Information.html#cairo-version-string">
|
826
|
+
<ANCHOR id="cairo-Types" href="cairo/cairo-Types.html">
|
827
|
+
<ANCHOR id="cairo-Types.synopsis" href="cairo/cairo-Types.html#cairo-Types.synopsis">
|
828
|
+
<ANCHOR id="cairo-Types.description" href="cairo/cairo-Types.html#cairo-Types.description">
|
829
|
+
<ANCHOR id="cairo-Types.details" href="cairo/cairo-Types.html#cairo-Types.details">
|
830
|
+
<ANCHOR id="cairo-bool-t" href="cairo/cairo-Types.html#cairo-bool-t">
|
831
|
+
<ANCHOR id="cairo-user-data-key-t" href="cairo/cairo-Types.html#cairo-user-data-key-t">
|
832
|
+
<ANCHOR id="cairo-destroy-func-t" href="cairo/cairo-Types.html#cairo-destroy-func-t">
|
833
|
+
<ANCHOR id="cairo-rectangle-int-t" href="cairo/cairo-Types.html#cairo-rectangle-int-t">
|