cairo 1.15.9-x64-mingw32 → 1.15.10-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/NEWS +20 -0
- data/Rakefile +9 -7
- data/ext/cairo/rb_cairo.h +1 -1
- data/lib/2.2/cairo.so +0 -0
- data/lib/2.3/cairo.so +0 -0
- data/lib/2.4/cairo.so +0 -0
- data/lib/cairo.rb +3 -3
- data/test/cairo-test-utils.rb +8 -4
- data/test/test_context.rb +1 -1
- data/test/test_font_face.rb +1 -1
- data/test/test_recording_surface.rb +1 -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 +78 -28
- 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/libpixman-1-0.dll +0 -0
- data/vendor/local/bin/libpng-config +1 -1
- data/vendor/local/bin/libpng16-16.dll +0 -0
- data/vendor/local/bin/libpng16-config +1 -1
- 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 +1 -1
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/bin/zlib1211.dll +0 -0
- data/vendor/local/etc/fonts/conf.d/30-metric-aliases.conf +56 -16
- data/vendor/local/etc/fonts/conf.d/30-urw-aliases.conf +11 -2
- data/vendor/local/etc/fonts/conf.d/45-latin.conf +4 -0
- data/vendor/local/etc/fonts/conf.d/60-latin.conf +1 -0
- data/vendor/local/include/cairo/cairo-pdf.h +7 -8
- data/vendor/local/include/cairo/cairo-version.h +1 -1
- data/vendor/local/include/fontconfig/fontconfig.h +3 -2
- data/vendor/local/include/freetype2/freetype/config/ftconfig.h +10 -1
- data/vendor/local/include/freetype2/freetype/config/ftheader.h +14 -1
- data/vendor/local/include/freetype2/freetype/config/ftoption.h +79 -22
- data/vendor/local/include/freetype2/freetype/config/ftstdlib.h +1 -1
- data/vendor/local/include/freetype2/freetype/freetype.h +616 -400
- data/vendor/local/include/freetype2/freetype/ftadvanc.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftautoh.h +32 -10
- data/vendor/local/include/freetype2/freetype/ftbbox.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftbdf.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftbitmap.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftbzip2.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftcache.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftcffdrv.h +47 -1
- data/vendor/local/include/freetype2/freetype/ftchapters.h +1 -0
- data/vendor/local/include/freetype2/freetype/ftcid.h +1 -1
- data/vendor/local/include/freetype2/freetype/fterrdef.h +5 -1
- data/vendor/local/include/freetype2/freetype/fterrors.h +5 -5
- data/vendor/local/include/freetype2/freetype/ftfntfmt.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftgasp.h +12 -4
- data/vendor/local/include/freetype2/freetype/ftglyph.h +11 -2
- data/vendor/local/include/freetype2/freetype/ftgxval.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftgzip.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftimage.h +12 -12
- data/vendor/local/include/freetype2/freetype/ftincrem.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftlcdfil.h +46 -10
- data/vendor/local/include/freetype2/freetype/ftlist.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftlzw.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftmac.h +6 -5
- data/vendor/local/include/freetype2/freetype/ftmm.h +147 -58
- data/vendor/local/include/freetype2/freetype/ftmodapi.h +46 -3
- data/vendor/local/include/freetype2/freetype/ftmoderr.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftotval.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftoutln.h +4 -1
- data/vendor/local/include/freetype2/freetype/ftpcfdrv.h +105 -0
- data/vendor/local/include/freetype2/freetype/ftpfr.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftrender.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftsizes.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftsnames.h +117 -30
- data/vendor/local/include/freetype2/freetype/ftstroke.h +2 -2
- data/vendor/local/include/freetype2/freetype/ftsynth.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftsystem.h +1 -1
- data/vendor/local/include/freetype2/freetype/fttrigon.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftttdrv.h +5 -6
- data/vendor/local/include/freetype2/freetype/fttypes.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftwinfnt.h +1 -1
- data/vendor/local/include/freetype2/freetype/t1tables.h +3 -3
- data/vendor/local/include/freetype2/freetype/ttnameid.h +313 -314
- data/vendor/local/include/freetype2/freetype/tttables.h +190 -173
- data/vendor/local/include/freetype2/freetype/tttags.h +7 -1
- data/vendor/local/include/freetype2/freetype/ttunpat.h +2 -2
- data/vendor/local/include/freetype2/ft2build.h +1 -1
- data/vendor/local/include/libpng16/png.h +29 -18
- data/vendor/local/include/libpng16/pngconf.h +1 -1
- data/vendor/local/include/libpng16/pnglibconf.h +5 -2
- data/vendor/local/include/libxml2/libxml/HTMLparser.h +2 -2
- data/vendor/local/include/libxml2/libxml/schemasInternals.h +1 -1
- data/vendor/local/include/libxml2/libxml/xmlreader.h +1 -1
- data/vendor/local/include/libxml2/libxml/xmlversion.h +4 -4
- data/vendor/local/include/png.h +29 -18
- data/vendor/local/include/pngconf.h +1 -1
- data/vendor/local/include/pnglibconf.h +5 -2
- data/vendor/local/lib/cmake/libxml2/libxml2-config.cmake +2 -2
- data/vendor/local/lib/fontconfig.def +1 -1
- 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 +2 -2
- 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 +2 -2
- data/vendor/local/lib/libcairo.a +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/libcairo.la +2 -2
- data/vendor/local/lib/libfontconfig.dll.a +0 -0
- data/vendor/local/lib/libfontconfig.la +1 -1
- data/vendor/local/lib/libfreetype.a +0 -0
- data/vendor/local/lib/libfreetype.dll.a +0 -0
- data/vendor/local/lib/libfreetype.la +2 -2
- data/vendor/local/lib/libpixman-1.dll.a +0 -0
- data/vendor/local/lib/libpng.a +0 -0
- data/vendor/local/lib/libpng.dll.a +0 -0
- data/vendor/local/lib/libpng.la +2 -2
- data/vendor/local/lib/libpng16.a +0 -0
- data/vendor/local/lib/libpng16.dll.a +0 -0
- data/vendor/local/lib/libpng16.la +2 -2
- data/vendor/local/lib/libxml2.a +0 -0
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libxml2.la +1 -1
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-png.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-script.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo.pc +1 -1
- data/vendor/local/lib/pkgconfig/fontconfig.pc +2 -2
- data/vendor/local/lib/pkgconfig/freetype2.pc +1 -1
- data/vendor/local/lib/pkgconfig/libpng.pc +2 -1
- data/vendor/local/lib/pkgconfig/libpng16.pc +2 -1
- data/vendor/local/lib/pkgconfig/libxml-2.0.pc +1 -1
- data/vendor/local/lib/xml2Conf.sh +1 -1
- data/vendor/local/share/aclocal/freetype2.m4 +1 -1
- data/vendor/local/share/aclocal/libxml.m4 +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/Copyright +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testHTML.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testSAX.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testXPath.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/xmllint.c +78 -78
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/DOM.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/FAQ.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/Libxml2-Logo-180x168.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/Libxml2-Logo-90x34.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/encoding.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/examples.xml +256 -256
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/examples.xsl +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/book1.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/home.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/index.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/left.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-DOCBparser.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-HTMLparser.html +4 -4
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-HTMLtree.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-SAX.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-SAX2.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-c14n.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-catalog.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-chvalid.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-debugXML.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-dict.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-encoding.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-entities.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-globals.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-hash.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-lib.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-list.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-nanoftp.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-nanohttp.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-parser.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-parserInternals.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-pattern.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-relaxng.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-schemasInternals.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-schematron.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-threads.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-tree.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-uri.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-valid.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xinclude.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xlink.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlIO.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlautomata.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlerror.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlexports.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlmemory.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlmodule.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlreader.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlregexp.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlsave.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlschemas.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlschemastypes.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlstring.html +3 -3
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlunicode.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlversion.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlwriter.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpath.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpathInternals.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpointer.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xzlib.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/right.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/up.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/index.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io2.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/libxml.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse3.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse4.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader3.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader3.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader4.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader4.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/redhat.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/smallfootonly.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/structure.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test1.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test2.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test3.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/testWriter.c +16 -16
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree2.c +1 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree2.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tst.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apa.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apb.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apc.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apd.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ape.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apf.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apg.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/aph.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/api.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s02.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s03.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s04.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s05.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s06.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s07.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s08.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s09.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/blank.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/1.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/10.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/2.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/3.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/4.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/5.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/6.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/7.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/8.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/9.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/caution.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/draft.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/home.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/important.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/next.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/note.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/prev.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/tip.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-blank.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-minus.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-plus.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/up.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/warning.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeaddattribute.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeaddkeyword.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeconvert.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includegetattribute.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includekeyword.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includexpath.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/index.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ix01.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/xmltutorial.pdf +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/w3c.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/writer.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xml.html +154 -8
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath2.res +0 -0
- data/vendor/local/share/fontconfig/conf.avail/30-metric-aliases.conf +56 -16
- data/vendor/local/share/fontconfig/conf.avail/30-urw-aliases.conf +11 -2
- data/vendor/local/share/fontconfig/conf.avail/45-latin.conf +4 -0
- data/vendor/local/share/fontconfig/conf.avail/60-latin.conf +1 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +17 -25
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +42 -53
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +48 -63
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +68 -78
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +34 -47
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +82 -92
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +50 -61
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +18 -27
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +22 -32
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html +64 -79
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +21 -30
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +99 -125
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +31 -41
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Script-Surfaces.html +43 -56
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Tags-and-Links.html +23 -29
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +41 -48
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +19 -26
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +56 -72
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +28 -39
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +39 -51
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +34 -47
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XCB-Surfaces.html +45 -57
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +62 -79
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html +18 -27
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +53 -95
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +40 -53
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +71 -87
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +49 -57
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +158 -189
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +76 -92
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +146 -164
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +234 -264
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +104 -119
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +236 -6
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +62 -63
- data/vendor/local/share/gtk-doc/html/cairo/index-1.12.html +69 -70
- data/vendor/local/share/gtk-doc/html/cairo/index-1.14.html +11 -12
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +59 -60
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +35 -36
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +28 -29
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +39 -40
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +510 -511
- data/vendor/local/share/gtk-doc/html/cairo/index.html +4 -5
- data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/left-insensitive.png +0 -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 +160 -142
- data/vendor/local/share/gtk-doc/html/cairo/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +4 -4
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +3 -3
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +1 -1
- data/vendor/local/share/license/cairo/README +1 -1
- data/vendor/local/share/license/fontconfig/README +58 -2
- data/vendor/local/share/license/freetype/README +5 -5
- data/vendor/local/share/license/freetype/README.git +1 -1
- data/vendor/local/share/license/libpng/README +6 -6
- data/vendor/local/share/license/libxml2/README.zOS +212 -0
- data/vendor/local/share/man/man1/freetype-config.1 +44 -6
- data/vendor/local/share/man/man3/libpng.3 +106 -48
- data/vendor/local/share/man/man3/libpngpf.3 +4 -4
- data/vendor/local/share/man/man5/png.5 +5 -5
- metadata +175 -174
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +0 -764
@@ -2,21 +2,20 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Cairo: A Vector Graphics Library
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.
|
5
|
+
<title>SVG Surfaces: Cairo: A Vector Graphics Library</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
7
|
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
8
|
<link rel="up" href="cairo-surfaces.html" title="Surfaces">
|
9
9
|
<link rel="prev" href="cairo-Win32-Surfaces.html" title="Win32 Surfaces">
|
10
10
|
<link rel="next" href="cairo-Quartz-Surfaces.html" title="Quartz Surfaces">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
-
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
16
|
<td width="100%" align="left" class="shortcuts">
|
17
|
-
<a href="#" class="shortcut">Top</a><span id="nav_description">
|
18
|
-
<a href="#cairo-SVG-Surfaces.description" class="shortcut">Description</a></span
|
19
|
-
<a href="#cairo-SVG-Surfaces.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#cairo-SVG-Surfaces.description" class="shortcut">Description</a></span>
|
20
19
|
</td>
|
21
20
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
22
21
|
<td><a accesskey="u" href="cairo-surfaces.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
@@ -34,7 +33,7 @@
|
|
34
33
|
</tr></table></div>
|
35
34
|
<div class="refsect1">
|
36
35
|
<a name="cairo-SVG-Surfaces.functions"></a><h2>Functions</h2>
|
37
|
-
<div class="informaltable"><table width="100%" border="0">
|
36
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
38
37
|
<colgroup>
|
39
38
|
<col width="150px" class="functions_return">
|
40
39
|
<col class="functions_name">
|
@@ -84,7 +83,7 @@
|
|
84
83
|
</div>
|
85
84
|
<div class="refsect1">
|
86
85
|
<a name="cairo-SVG-Surfaces.other"></a><h2>Types and Values</h2>
|
87
|
-
<div class="informaltable"><table width="100%" border="0">
|
86
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
88
87
|
<colgroup>
|
89
88
|
<col width="150px" class="name">
|
90
89
|
<col class="description">
|
@@ -102,11 +101,6 @@
|
|
102
101
|
</table></div>
|
103
102
|
</div>
|
104
103
|
<div class="refsect1">
|
105
|
-
<a name="cairo-SVG-Surfaces.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
106
|
-
<pre class="screen">
|
107
|
-
</pre>
|
108
|
-
</div>
|
109
|
-
<div class="refsect1">
|
110
104
|
<a name="cairo-SVG-Surfaces.description"></a><h2>Description</h2>
|
111
105
|
<p>The SVG surface is used to render cairo graphics to
|
112
106
|
SVG files and is a multi-page vector surface backend.</p>
|
@@ -136,8 +130,8 @@ correctness of URI is left to the client code.</p>
|
|
136
130
|
or <a class="link" href="cairo-cairo-surface-t.html#CAIRO-MIME-TYPE-PNG:CAPS" title="CAIRO_MIME_TYPE_PNG"><code class="literal">CAIRO_MIME_TYPE_PNG</code></a> is specified, the corresponding data is
|
137
131
|
Base64-encoded and emitted.</p>
|
138
132
|
<div class="refsect3">
|
139
|
-
<a name="
|
140
|
-
<div class="informaltable"><table width="100%" border="0">
|
133
|
+
<a name="cairo-svg-surface-create.parameters"></a><h4>Parameters</h4>
|
134
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
141
135
|
<colgroup>
|
142
136
|
<col width="150px" class="parameters_name">
|
143
137
|
<col class="parameters_description">
|
@@ -166,16 +160,15 @@ temporary file.</p></td>
|
|
166
160
|
</table></div>
|
167
161
|
</div>
|
168
162
|
<div class="refsect3">
|
169
|
-
<a name="
|
163
|
+
<a name="cairo-svg-surface-create.returns"></a><h4>Returns</h4>
|
170
164
|
<p> a pointer to the newly created surface. The caller
|
171
165
|
owns the surface and should call <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-destroy" title="cairo_surface_destroy ()"><code class="function">cairo_surface_destroy()</code></a> when done
|
172
166
|
with it.</p>
|
173
167
|
<p>This function always returns a valid pointer, but it will return a
|
174
168
|
pointer to a "nil" surface if an error such as out of memory
|
175
169
|
occurs. You can use <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-status" title="cairo_surface_status ()"><code class="function">cairo_surface_status()</code></a> to check for this.</p>
|
176
|
-
<p></p>
|
177
170
|
</div>
|
178
|
-
<p class="since">Since 1.2</p>
|
171
|
+
<p class="since">Since: 1.2</p>
|
179
172
|
</div>
|
180
173
|
<hr>
|
181
174
|
<div class="refsect2">
|
@@ -190,8 +183,8 @@ incrementally to the stream represented by <em class="parameter"><code>write_fun
|
|
190
183
|
and <em class="parameter"><code>closure</code></em>
|
191
184
|
.</p>
|
192
185
|
<div class="refsect3">
|
193
|
-
<a name="
|
194
|
-
<div class="informaltable"><table width="100%" border="0">
|
186
|
+
<a name="cairo-svg-surface-create-for-stream.parameters"></a><h4>Parameters</h4>
|
187
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
195
188
|
<colgroup>
|
196
189
|
<col width="150px" class="parameters_name">
|
197
190
|
<col class="parameters_description">
|
@@ -228,16 +221,15 @@ generating any temporary files.</p></td>
|
|
228
221
|
</table></div>
|
229
222
|
</div>
|
230
223
|
<div class="refsect3">
|
231
|
-
<a name="
|
224
|
+
<a name="cairo-svg-surface-create-for-stream.returns"></a><h4>Returns</h4>
|
232
225
|
<p> a pointer to the newly created surface. The caller
|
233
226
|
owns the surface and should call <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-destroy" title="cairo_surface_destroy ()"><code class="function">cairo_surface_destroy()</code></a> when done
|
234
227
|
with it.</p>
|
235
228
|
<p>This function always returns a valid pointer, but it will return a
|
236
229
|
pointer to a "nil" surface if an error such as out of memory
|
237
230
|
occurs. You can use <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-status" title="cairo_surface_status ()"><code class="function">cairo_surface_status()</code></a> to check for this.</p>
|
238
|
-
<p></p>
|
239
231
|
</div>
|
240
|
-
<p class="since">Since 1.2</p>
|
232
|
+
<p class="since">Since: 1.2</p>
|
241
233
|
</div>
|
242
234
|
<hr>
|
243
235
|
<div class="refsect2">
|
@@ -253,8 +245,8 @@ have been performed on the given surface. The simplest way to do
|
|
253
245
|
this is to call this function immediately after creating the
|
254
246
|
surface.</p>
|
255
247
|
<div class="refsect3">
|
256
|
-
<a name="
|
257
|
-
<div class="informaltable"><table width="100%" border="0">
|
248
|
+
<a name="cairo-svg-surface-restrict-to-version.parameters"></a><h4>Parameters</h4>
|
249
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
258
250
|
<colgroup>
|
259
251
|
<col width="150px" class="parameters_name">
|
260
252
|
<col class="parameters_description">
|
@@ -274,7 +266,7 @@ surface.</p>
|
|
274
266
|
</tbody>
|
275
267
|
</table></div>
|
276
268
|
</div>
|
277
|
-
<p class="since">Since 1.2</p>
|
269
|
+
<p class="since">Since: 1.2</p>
|
278
270
|
</div>
|
279
271
|
<hr>
|
280
272
|
<div class="refsect2">
|
@@ -285,8 +277,8 @@ cairo_svg_get_versions (<em class="parameter"><code><a class="link" href="cairo-
|
|
285
277
|
<p>Used to retrieve the list of supported versions. See
|
286
278
|
<a class="link" href="cairo-SVG-Surfaces.html#cairo-svg-surface-restrict-to-version" title="cairo_svg_surface_restrict_to_version ()"><code class="function">cairo_svg_surface_restrict_to_version()</code></a>.</p>
|
287
279
|
<div class="refsect3">
|
288
|
-
<a name="
|
289
|
-
<div class="informaltable"><table width="100%" border="0">
|
280
|
+
<a name="cairo-svg-get-versions.parameters"></a><h4>Parameters</h4>
|
281
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
290
282
|
<colgroup>
|
291
283
|
<col width="150px" class="parameters_name">
|
292
284
|
<col class="parameters_description">
|
@@ -306,7 +298,7 @@ cairo_svg_get_versions (<em class="parameter"><code><a class="link" href="cairo-
|
|
306
298
|
</tbody>
|
307
299
|
</table></div>
|
308
300
|
</div>
|
309
|
-
<p class="since">Since 1.2</p>
|
301
|
+
<p class="since">Since: 1.2</p>
|
310
302
|
</div>
|
311
303
|
<hr>
|
312
304
|
<div class="refsect2">
|
@@ -319,8 +311,8 @@ will return <code class="literal">NULL</code> if <em class="parameter"><code>ver
|
|
319
311
|
isn't valid. See <a class="link" href="cairo-SVG-Surfaces.html#cairo-svg-get-versions" title="cairo_svg_get_versions ()"><code class="function">cairo_svg_get_versions()</code></a>
|
320
312
|
for a way to get the list of valid version ids.</p>
|
321
313
|
<div class="refsect3">
|
322
|
-
<a name="
|
323
|
-
<div class="informaltable"><table width="100%" border="0">
|
314
|
+
<a name="cairo-svg-version-to-string.parameters"></a><h4>Parameters</h4>
|
315
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
324
316
|
<colgroup>
|
325
317
|
<col width="150px" class="parameters_name">
|
326
318
|
<col class="parameters_description">
|
@@ -334,11 +326,10 @@ for a way to get the list of valid version ids.</p>
|
|
334
326
|
</table></div>
|
335
327
|
</div>
|
336
328
|
<div class="refsect3">
|
337
|
-
<a name="
|
329
|
+
<a name="cairo-svg-version-to-string.returns"></a><h4>Returns</h4>
|
338
330
|
<p> the string associated to given version.</p>
|
339
|
-
<p></p>
|
340
331
|
</div>
|
341
|
-
<p class="since">Since 1.2</p>
|
332
|
+
<p class="since">Since: 1.2</p>
|
342
333
|
</div>
|
343
334
|
</div>
|
344
335
|
<div class="refsect1">
|
@@ -349,7 +340,7 @@ for a way to get the list of valid version ids.</p>
|
|
349
340
|
</pre>
|
350
341
|
<p>Defined if the SVG surface backend is available.
|
351
342
|
This macro can be used to conditionally compile backend-specific code.</p>
|
352
|
-
<p class="since">Since 1.2</p>
|
343
|
+
<p class="since">Since: 1.2</p>
|
353
344
|
</div>
|
354
345
|
<hr>
|
355
346
|
<div class="refsect2">
|
@@ -357,8 +348,8 @@ This macro can be used to conditionally compile backend-specific code.</p>
|
|
357
348
|
<p><a class="link" href="cairo-SVG-Surfaces.html#cairo-svg-version-t" title="enum cairo_svg_version_t"><span class="type">cairo_svg_version_t</span></a> is used to describe the version number of the SVG
|
358
349
|
specification that a generated SVG file will conform to.</p>
|
359
350
|
<div class="refsect3">
|
360
|
-
<a name="
|
361
|
-
<div class="informaltable"><table width="100%" border="0">
|
351
|
+
<a name="cairo-svg-version-t.members"></a><h4>Members</h4>
|
352
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
362
353
|
<colgroup>
|
363
354
|
<col width="300px" class="enum_members_name">
|
364
355
|
<col class="enum_members_description">
|
@@ -382,7 +373,7 @@ specification that a generated SVG file will conform to.</p>
|
|
382
373
|
</tbody>
|
383
374
|
</table></div>
|
384
375
|
</div>
|
385
|
-
<p class="since">Since 1.2</p>
|
376
|
+
<p class="since">Since: 1.2</p>
|
386
377
|
</div>
|
387
378
|
</div>
|
388
379
|
<div class="refsect1">
|
@@ -391,7 +382,6 @@ specification that a generated SVG file will conform to.</p>
|
|
391
382
|
</div>
|
392
383
|
</div>
|
393
384
|
<div class="footer">
|
394
|
-
<hr>
|
395
|
-
Generated by GTK-Doc V1.20</div>
|
385
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
396
386
|
</body>
|
397
387
|
</html>
|
@@ -2,21 +2,20 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Cairo: A Vector Graphics Library
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.
|
5
|
+
<title>Script Surfaces: Cairo: A Vector Graphics Library</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
7
|
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
8
|
<link rel="up" href="cairo-surfaces.html" title="Surfaces">
|
9
9
|
<link rel="prev" href="cairo-XLib-XRender-Backend.html" title="XLib-XRender Backend">
|
10
10
|
<link rel="next" href="cairo-support.html" title="Utilities">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
-
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
16
|
<td width="100%" align="left" class="shortcuts">
|
17
|
-
<a href="#" class="shortcut">Top</a><span id="nav_description">
|
18
|
-
<a href="#cairo-Script-Surfaces.description" class="shortcut">Description</a></span
|
19
|
-
<a href="#cairo-Script-Surfaces.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#cairo-Script-Surfaces.description" class="shortcut">Description</a></span>
|
20
19
|
</td>
|
21
20
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
22
21
|
<td><a accesskey="u" href="cairo-surfaces.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
@@ -34,7 +33,7 @@
|
|
34
33
|
</tr></table></div>
|
35
34
|
<div class="refsect1">
|
36
35
|
<a name="cairo-Script-Surfaces.functions"></a><h2>Functions</h2>
|
37
|
-
<div class="informaltable"><table width="100%" border="0">
|
36
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
38
37
|
<colgroup>
|
39
38
|
<col width="150px" class="functions_return">
|
40
39
|
<col class="functions_name">
|
@@ -109,7 +108,7 @@
|
|
109
108
|
</div>
|
110
109
|
<div class="refsect1">
|
111
110
|
<a name="cairo-Script-Surfaces.other"></a><h2>Types and Values</h2>
|
112
|
-
<div class="informaltable"><table width="100%" border="0">
|
111
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
113
112
|
<colgroup>
|
114
113
|
<col width="150px" class="name">
|
115
114
|
<col class="description">
|
@@ -127,11 +126,6 @@
|
|
127
126
|
</table></div>
|
128
127
|
</div>
|
129
128
|
<div class="refsect1">
|
130
|
-
<a name="cairo-Script-Surfaces.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
131
|
-
<pre class="screen">
|
132
|
-
</pre>
|
133
|
-
</div>
|
134
|
-
<div class="refsect1">
|
135
129
|
<a name="cairo-Script-Surfaces.description"></a><h2>Description</h2>
|
136
130
|
<p>The script surface provides the ability to render to a native
|
137
131
|
script that matches the cairo drawing model. The scripts can
|
@@ -147,8 +141,8 @@ cairo_script_create (<em class="parameter"><code>const <span class="type">char</
|
|
147
141
|
<p>Creates a output device for emitting the script, used when
|
148
142
|
creating the individual surfaces.</p>
|
149
143
|
<div class="refsect3">
|
150
|
-
<a name="
|
151
|
-
<div class="informaltable"><table width="100%" border="0">
|
144
|
+
<a name="cairo-script-create.parameters"></a><h4>Parameters</h4>
|
145
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
152
146
|
<colgroup>
|
153
147
|
<col width="150px" class="parameters_name">
|
154
148
|
<col class="parameters_description">
|
@@ -162,16 +156,15 @@ creating the individual surfaces.</p>
|
|
162
156
|
</table></div>
|
163
157
|
</div>
|
164
158
|
<div class="refsect3">
|
165
|
-
<a name="
|
159
|
+
<a name="cairo-script-create.returns"></a><h4>Returns</h4>
|
166
160
|
<p> a pointer to the newly created device. The caller
|
167
161
|
owns the surface and should call <a class="link" href="cairo-cairo-device-t.html#cairo-device-destroy" title="cairo_device_destroy ()"><code class="function">cairo_device_destroy()</code></a> when done
|
168
162
|
with it.</p>
|
169
163
|
<p>This function always returns a valid pointer, but it will return a
|
170
164
|
pointer to a "nil" device if an error such as out of memory
|
171
165
|
occurs. You can use <a class="link" href="cairo-cairo-device-t.html#cairo-device-status" title="cairo_device_status ()"><code class="function">cairo_device_status()</code></a> to check for this.</p>
|
172
|
-
<p></p>
|
173
166
|
</div>
|
174
|
-
<p class="since">Since 1.12</p>
|
167
|
+
<p class="since">Since: 1.12</p>
|
175
168
|
</div>
|
176
169
|
<hr>
|
177
170
|
<div class="refsect2">
|
@@ -182,8 +175,8 @@ cairo_script_create_for_stream (<em class="parameter"><code><a class="link" href
|
|
182
175
|
<p>Creates a output device for emitting the script, used when
|
183
176
|
creating the individual surfaces.</p>
|
184
177
|
<div class="refsect3">
|
185
|
-
<a name="
|
186
|
-
<div class="informaltable"><table width="100%" border="0">
|
178
|
+
<a name="cairo-script-create-for-stream.parameters"></a><h4>Parameters</h4>
|
179
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
187
180
|
<colgroup>
|
188
181
|
<col width="150px" class="parameters_name">
|
189
182
|
<col class="parameters_description">
|
@@ -204,16 +197,15 @@ creating the individual surfaces.</p>
|
|
204
197
|
</table></div>
|
205
198
|
</div>
|
206
199
|
<div class="refsect3">
|
207
|
-
<a name="
|
200
|
+
<a name="cairo-script-create-for-stream.returns"></a><h4>Returns</h4>
|
208
201
|
<p> a pointer to the newly created device. The caller
|
209
202
|
owns the surface and should call <a class="link" href="cairo-cairo-device-t.html#cairo-device-destroy" title="cairo_device_destroy ()"><code class="function">cairo_device_destroy()</code></a> when done
|
210
203
|
with it.</p>
|
211
204
|
<p>This function always returns a valid pointer, but it will return a
|
212
205
|
pointer to a "nil" device if an error such as out of memory
|
213
206
|
occurs. You can use <a class="link" href="cairo-cairo-device-t.html#cairo-device-status" title="cairo_device_status ()"><code class="function">cairo_device_status()</code></a> to check for this.</p>
|
214
|
-
<p></p>
|
215
207
|
</div>
|
216
|
-
<p class="since">Since 1.12</p>
|
208
|
+
<p class="since">Since: 1.12</p>
|
217
209
|
</div>
|
218
210
|
<hr>
|
219
211
|
<div class="refsect2">
|
@@ -224,8 +216,8 @@ cairo_script_from_recording_surface (<em class="parameter"><code><a class="link"
|
|
224
216
|
<p>Converts the record operations in <em class="parameter"><code>recording_surface</code></em>
|
225
217
|
into a script.</p>
|
226
218
|
<div class="refsect3">
|
227
|
-
<a name="
|
228
|
-
<div class="informaltable"><table width="100%" border="0">
|
219
|
+
<a name="cairo-script-from-recording-surface.parameters"></a><h4>Parameters</h4>
|
220
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
229
221
|
<colgroup>
|
230
222
|
<col width="150px" class="parameters_name">
|
231
223
|
<col class="parameters_description">
|
@@ -246,11 +238,10 @@ cairo_script_from_recording_surface (<em class="parameter"><code><a class="link"
|
|
246
238
|
</table></div>
|
247
239
|
</div>
|
248
240
|
<div class="refsect3">
|
249
|
-
<a name="
|
241
|
+
<a name="cairo-script-from-recording-surface.returns"></a><h4>Returns</h4>
|
250
242
|
<p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><span class="type">CAIRO_STATUS_SUCCESS</span></a> on successful completion or an error code.</p>
|
251
|
-
<p></p>
|
252
243
|
</div>
|
253
|
-
<p class="since">Since 1.12</p>
|
244
|
+
<p class="since">Since: 1.12</p>
|
254
245
|
</div>
|
255
246
|
<hr>
|
256
247
|
<div class="refsect2">
|
@@ -259,8 +250,8 @@ cairo_script_from_recording_surface (<em class="parameter"><code><a class="link"
|
|
259
250
|
cairo_script_get_mode (<em class="parameter"><code><a class="link" href="cairo-cairo-device-t.html#cairo-device-t" title="cairo_device_t"><span class="type">cairo_device_t</span></a> *script</code></em>);</pre>
|
260
251
|
<p>Queries the script for its current output mode.</p>
|
261
252
|
<div class="refsect3">
|
262
|
-
<a name="
|
263
|
-
<div class="informaltable"><table width="100%" border="0">
|
253
|
+
<a name="cairo-script-get-mode.parameters"></a><h4>Parameters</h4>
|
254
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
264
255
|
<colgroup>
|
265
256
|
<col width="150px" class="parameters_name">
|
266
257
|
<col class="parameters_description">
|
@@ -274,11 +265,10 @@ cairo_script_get_mode (<em class="parameter"><code><a class="link" href="cairo-c
|
|
274
265
|
</table></div>
|
275
266
|
</div>
|
276
267
|
<div class="refsect3">
|
277
|
-
<a name="
|
268
|
+
<a name="cairo-script-get-mode.returns"></a><h4>Returns</h4>
|
278
269
|
<p> the current output mode of the script</p>
|
279
|
-
<p></p>
|
280
270
|
</div>
|
281
|
-
<p class="since">Since 1.12</p>
|
271
|
+
<p class="since">Since: 1.12</p>
|
282
272
|
</div>
|
283
273
|
<hr>
|
284
274
|
<div class="refsect2">
|
@@ -288,8 +278,8 @@ cairo_script_set_mode (<em class="parameter"><code><a class="link" href="cairo-c
|
|
288
278
|
<em class="parameter"><code><a class="link" href="cairo-Script-Surfaces.html#cairo-script-mode-t" title="enum cairo_script_mode_t"><span class="type">cairo_script_mode_t</span></a> mode</code></em>);</pre>
|
289
279
|
<p>Change the output mode of the script</p>
|
290
280
|
<div class="refsect3">
|
291
|
-
<a name="
|
292
|
-
<div class="informaltable"><table width="100%" border="0">
|
281
|
+
<a name="cairo-script-set-mode.parameters"></a><h4>Parameters</h4>
|
282
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
293
283
|
<colgroup>
|
294
284
|
<col width="150px" class="parameters_name">
|
295
285
|
<col class="parameters_description">
|
@@ -309,7 +299,7 @@ cairo_script_set_mode (<em class="parameter"><code><a class="link" href="cairo-c
|
|
309
299
|
</tbody>
|
310
300
|
</table></div>
|
311
301
|
</div>
|
312
|
-
<p class="since">Since 1.12</p>
|
302
|
+
<p class="since">Since: 1.12</p>
|
313
303
|
</div>
|
314
304
|
<hr>
|
315
305
|
<div class="refsect2">
|
@@ -322,8 +312,8 @@ cairo_script_surface_create (<em class="parameter"><code><a class="link" href="c
|
|
322
312
|
<p>Create a new surface that will emit its rendering through <em class="parameter"><code>script</code></em>
|
323
313
|
</p>
|
324
314
|
<div class="refsect3">
|
325
|
-
<a name="
|
326
|
-
<div class="informaltable"><table width="100%" border="0">
|
315
|
+
<a name="cairo-script-surface-create.parameters"></a><h4>Parameters</h4>
|
316
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
327
317
|
<colgroup>
|
328
318
|
<col width="150px" class="parameters_name">
|
329
319
|
<col class="parameters_description">
|
@@ -354,16 +344,15 @@ cairo_script_surface_create (<em class="parameter"><code><a class="link" href="c
|
|
354
344
|
</table></div>
|
355
345
|
</div>
|
356
346
|
<div class="refsect3">
|
357
|
-
<a name="
|
347
|
+
<a name="cairo-script-surface-create.returns"></a><h4>Returns</h4>
|
358
348
|
<p> a pointer to the newly created surface. The caller
|
359
349
|
owns the surface and should call <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-destroy" title="cairo_surface_destroy ()"><code class="function">cairo_surface_destroy()</code></a> when done
|
360
350
|
with it.</p>
|
361
351
|
<p>This function always returns a valid pointer, but it will return a
|
362
352
|
pointer to a "nil" surface if an error such as out of memory
|
363
353
|
occurs. You can use <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-status" title="cairo_surface_status ()"><code class="function">cairo_surface_status()</code></a> to check for this.</p>
|
364
|
-
<p></p>
|
365
354
|
</div>
|
366
|
-
<p class="since">Since 1.12</p>
|
355
|
+
<p class="since">Since: 1.12</p>
|
367
356
|
</div>
|
368
357
|
<hr>
|
369
358
|
<div class="refsect2">
|
@@ -377,8 +366,8 @@ cairo_script_surface_create_for_target
|
|
377
366
|
the operations to <em class="parameter"><code>device</code></em>
|
378
367
|
.</p>
|
379
368
|
<div class="refsect3">
|
380
|
-
<a name="
|
381
|
-
<div class="informaltable"><table width="100%" border="0">
|
369
|
+
<a name="cairo-script-surface-create-for-target.parameters"></a><h4>Parameters</h4>
|
370
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
382
371
|
<colgroup>
|
383
372
|
<col width="150px" class="parameters_name">
|
384
373
|
<col class="parameters_description">
|
@@ -399,16 +388,15 @@ the operations to <em class="parameter"><code>device</code></em>
|
|
399
388
|
</table></div>
|
400
389
|
</div>
|
401
390
|
<div class="refsect3">
|
402
|
-
<a name="
|
391
|
+
<a name="cairo-script-surface-create-for-target.returns"></a><h4>Returns</h4>
|
403
392
|
<p> a pointer to the newly created surface. The caller
|
404
393
|
owns the surface and should call <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-destroy" title="cairo_surface_destroy ()"><code class="function">cairo_surface_destroy()</code></a> when done
|
405
394
|
with it.</p>
|
406
395
|
<p>This function always returns a valid pointer, but it will return a
|
407
396
|
pointer to a "nil" surface if an error such as out of memory
|
408
397
|
occurs. You can use <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-status" title="cairo_surface_status ()"><code class="function">cairo_surface_status()</code></a> to check for this.</p>
|
409
|
-
<p></p>
|
410
398
|
</div>
|
411
|
-
<p class="since">Since 1.12</p>
|
399
|
+
<p class="since">Since: 1.12</p>
|
412
400
|
</div>
|
413
401
|
<hr>
|
414
402
|
<div class="refsect2">
|
@@ -419,8 +407,8 @@ cairo_script_write_comment (<em class="parameter"><code><a class="link" href="ca
|
|
419
407
|
<em class="parameter"><code><span class="type">int</span> len</code></em>);</pre>
|
420
408
|
<p>Emit a string verbatim into the script.</p>
|
421
409
|
<div class="refsect3">
|
422
|
-
<a name="
|
423
|
-
<div class="informaltable"><table width="100%" border="0">
|
410
|
+
<a name="cairo-script-write-comment.parameters"></a><h4>Parameters</h4>
|
411
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
424
412
|
<colgroup>
|
425
413
|
<col width="150px" class="parameters_name">
|
426
414
|
<col class="parameters_description">
|
@@ -445,7 +433,7 @@ cairo_script_write_comment (<em class="parameter"><code><a class="link" href="ca
|
|
445
433
|
</tbody>
|
446
434
|
</table></div>
|
447
435
|
</div>
|
448
|
-
<p class="since">Since 1.12</p>
|
436
|
+
<p class="since">Since: 1.12</p>
|
449
437
|
</div>
|
450
438
|
</div>
|
451
439
|
<div class="refsect1">
|
@@ -456,15 +444,15 @@ cairo_script_write_comment (<em class="parameter"><code><a class="link" href="ca
|
|
456
444
|
</pre>
|
457
445
|
<p>Defined if the script surface backend is available.
|
458
446
|
The script surface backend is always built in since 1.12.</p>
|
459
|
-
<p class="since">Since 1.12</p>
|
447
|
+
<p class="since">Since: 1.12</p>
|
460
448
|
</div>
|
461
449
|
<hr>
|
462
450
|
<div class="refsect2">
|
463
451
|
<a name="cairo-script-mode-t"></a><h3>enum cairo_script_mode_t</h3>
|
464
452
|
<p>A set of script output variants.</p>
|
465
453
|
<div class="refsect3">
|
466
|
-
<a name="
|
467
|
-
<div class="informaltable"><table width="100%" border="0">
|
454
|
+
<a name="cairo-script-mode-t.members"></a><h4>Members</h4>
|
455
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
468
456
|
<colgroup>
|
469
457
|
<col width="300px" class="enum_members_name">
|
470
458
|
<col class="enum_members_description">
|
@@ -488,7 +476,7 @@ The script surface backend is always built in since 1.12.</p>
|
|
488
476
|
</tbody>
|
489
477
|
</table></div>
|
490
478
|
</div>
|
491
|
-
<p class="since">Since 1.12</p>
|
479
|
+
<p class="since">Since: 1.12</p>
|
492
480
|
</div>
|
493
481
|
</div>
|
494
482
|
<div class="refsect1">
|
@@ -497,7 +485,6 @@ The script surface backend is always built in since 1.12.</p>
|
|
497
485
|
</div>
|
498
486
|
</div>
|
499
487
|
<div class="footer">
|
500
|
-
<hr>
|
501
|
-
Generated by GTK-Doc V1.20</div>
|
488
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
502
489
|
</body>
|
503
490
|
</html>
|