├── io2d └── src │ ├── 3rd-party │ ├── pixman │ │ ├── AUTHORS │ │ ├── NEWS │ │ ├── ChangeLog │ │ ├── config.h.cmake │ │ ├── pixman │ │ │ ├── pixman-access-accessors.c │ │ │ └── pixman-edge-accessors.c │ │ └── demos │ │ │ ├── parrot.jpg │ │ │ └── zone_plate.png │ └── cairo │ │ ├── doc │ │ ├── public │ │ │ ├── cairo.types │ │ │ └── cairo-overrides.txt │ │ ├── .gitignore │ │ ├── tutorial │ │ │ ├── src │ │ │ │ └── .gitignore │ │ │ └── slides │ │ │ │ ├── circle-ooo.png │ │ │ │ ├── circle-cairo.png │ │ │ │ ├── .gitignore │ │ │ │ ├── circle-ooo-large.png │ │ │ │ ├── expander-fuzzy.png │ │ │ │ ├── expander-sharp.png │ │ │ │ ├── rendering-model.png │ │ │ │ ├── circle-cairo-large.png │ │ │ │ ├── expander-fuzzy-large.png │ │ │ │ └── expander-sharp-large.png │ │ └── Makefile.am │ │ ├── util │ │ ├── cairo-trace │ │ │ └── .gitignore │ │ ├── cairo-sphinx │ │ │ └── .gitignore │ │ └── cairo-script │ │ │ └── .gitignore │ │ ├── test │ │ ├── pdiff │ │ │ └── .gitignore │ │ ├── jp2.jp2 │ │ ├── png.png │ │ ├── 6x13.pcf │ │ ├── jpeg.jpg │ │ ├── scarab.jpg │ │ ├── romedalen.jpg │ │ ├── romedalen.png │ │ ├── degenerate-dash.c │ │ ├── degenerate-path.c │ │ ├── long-dashed-lines.c │ │ ├── reflected-stroke.c │ │ ├── user-font-rescale.c │ │ ├── reference │ │ │ ├── halo.ref.png │ │ │ ├── twin.ref.png │ │ │ ├── a1-bug.ref.png │ │ │ ├── a1-fill.ref.png │ │ │ ├── a1-mask.ref.png │ │ │ ├── a8-mask.ref.png │ │ │ ├── caps-05.ref.png │ │ │ ├── caps-1.ref.png │ │ │ ├── caps-2.ref.png │ │ │ ├── caps.ps.ref.png │ │ │ ├── halo.ps.ref.png │ │ │ ├── joins.ref.png │ │ │ ├── paint.ref.png │ │ │ ├── ps-eps.ref.png │ │ │ ├── twin.ps.ref.png │ │ │ ├── a1-sample.ref.png │ │ │ ├── a1-tiger.ref.png │ │ │ ├── bug-51910.ref.png │ │ │ ├── bug-seams.ref.png │ │ │ ├── clip-all.ref.png │ │ │ ├── hatchings.ref.png │ │ │ ├── joins.ps.ref.png │ │ │ ├── mime-data.ref.png │ │ │ ├── smask.ps.ref.png │ │ │ ├── smask.svg.ref.png │ │ │ ├── twin.svg.ref.png │ │ │ ├── user-font.ref.png │ │ │ ├── a1-clip-fill.ref.png │ │ │ ├── big-line.ps.ref.png │ │ │ ├── bug-spline.ref.png │ │ │ ├── caps-1.traps.ref.png │ │ │ ├── caps-2.traps.ref.png │ │ │ ├── caps-joins-1.ref.png │ │ │ ├── caps-joins-2.ref.png │ │ │ ├── caps.argb32.ref.png │ │ │ ├── caps.image16.ref.png │ │ │ ├── caps.rgb24.ref.png │ │ │ ├── checkerboard.ref.png │ │ │ ├── clear.argb32.ref.png │ │ │ ├── clear.rgb24.ref.png │ │ │ ├── clip-empty.ref.png │ │ │ ├── clip-stroke.ref.png │ │ │ ├── copy-path.ps.ref.png │ │ │ ├── dash-curve.ref.png │ │ │ ├── dash-no-dash.ref.png │ │ │ ├── dash-offset.ref.png │ │ │ ├── dash-scale.ref.png │ │ │ ├── extend-pad.ref.png │ │ │ ├── group-clip.ref.png │ │ │ ├── group-paint.ref.png │ │ │ ├── halo.image16.ref.png │ │ │ ├── halo.quartz.ref.png │ │ │ ├── halo.traps.ref.png │ │ │ ├── huge-radial.ref.png │ │ │ ├── joins.quartz.ref.png │ │ │ ├── large-clip.ref.png │ │ │ ├── large-font.ref.png │ │ │ ├── large-source.ref.png │ │ │ ├── leaky-dash.ref.png │ │ │ ├── mask-glyphs.ref.png │ │ │ ├── mask.argb32.ref.png │ │ │ ├── mask.image16.ref.png │ │ │ ├── mask.rgb24.ref.png │ │ │ ├── mesh-pattern.ref.png │ │ │ ├── mime-data.ps.ref.png │ │ │ ├── paint-repeat.ref.png │ │ │ ├── random-clip.ref.png │ │ │ ├── record-mesh.ref.png │ │ │ ├── record-paint.ref.png │ │ │ ├── smask.argb32.ref.png │ │ │ ├── smask.pdf.xfail.png │ │ │ ├── smask.quartz.ref.png │ │ │ ├── smask.rgb24.ref.png │ │ │ ├── smask.script.ref.png │ │ │ ├── smask.traps.ref.png │ │ │ ├── source-clip.ref.png │ │ │ ├── text-rotate.ref.png │ │ │ ├── tiger.argb32.ref.png │ │ │ ├── tiger.rgb24.ref.png │ │ │ ├── twin.image16.ref.png │ │ │ ├── user-font.ps.ref.png │ │ │ ├── zero-alpha.ref.png │ │ │ ├── a1-bug.image16.ref.png │ │ │ ├── a1-clip-paint.ref.png │ │ │ ├── a1-clip-stroke.ref.png │ │ │ ├── a1-line-width.ref.png │ │ │ ├── a1-mask-sample.ref.png │ │ │ ├── a8-clear.rgb24.ref.png │ │ │ ├── aliasing.rgb24.ref.png │ │ │ ├── big-line.rgb24.ref.png │ │ │ ├── bilevel-image.ref.png │ │ │ ├── bug-bo-collins.ref.png │ │ │ ├── bug-extents.ps.ref.png │ │ │ ├── caps-05.traps.ref.png │ │ │ ├── caps-joins-05.ref.png │ │ │ ├── caps-joins.ps.ref.png │ │ │ ├── clip-contexts.ref.png │ │ │ ├── clip-disjoint.ref.png │ │ │ ├── clip-fill.ps.xfail.png │ │ │ ├── clip-image.ps.ref.png │ │ │ ├── clip-shape.ps.ref.png │ │ │ ├── clip-text.ps.xfail.png │ │ │ ├── clip-text.svg.ref.png │ │ │ ├── close-path.ps2.ref.png │ │ │ ├── close-path.ps3.ref.png │ │ │ ├── copy-disjoint.ref.png │ │ │ ├── dash-curve.ps2.ref.png │ │ │ ├── dash-curve.ps3.ref.png │ │ │ ├── dash-scale.ps.ref.png │ │ │ ├── dash-state.ps2.ref.png │ │ │ ├── dash-state.ps3.ref.png │ │ │ ├── degenerate-arc.ref.png │ │ │ ├── drunkard-tails.ref.png │ │ │ ├── extend-pad.ps.ref.png │ │ │ ├── extend-reflect.ref.png │ │ │ ├── extend-repeat.ref.png │ │ │ ├── fallback.rgb24.ref.png │ │ │ ├── fill-disjoint.ref.png │ │ │ ├── fill-image.ps.ref.png │ │ │ ├── implicit-close.ref.png │ │ │ ├── joins-retrace.ref.png │ │ │ ├── joins.image16.ref.png │ │ │ ├── linear-uniform.ref.png │ │ │ ├── mask-alpha.ps.ref.png │ │ │ ├── mask-ctm.rgb24.ref.png │ │ │ ├── mask-glyphs.gl.ref.png │ │ │ ├── mask.pdf.rgb24.ref.png │ │ │ ├── mime-data.pdf.ref.png │ │ │ ├── mime-data.svg.ref.png │ │ │ ├── operator.rgb24.ref.png │ │ │ ├── path-append.ps.ref.png │ │ │ ├── raster-source.ref.png │ │ │ ├── rel-path.rgb24.ref.png │ │ │ ├── self-copy.ps2.ref.png │ │ │ ├── self-copy.ps3.ref.png │ │ │ ├── smask-fill.pdf.ref.png │ │ │ ├── smask-fill.svg.ref.png │ │ │ ├── smask-mask.pdf.ref.png │ │ │ ├── smask-mask.svg.ref.png │ │ │ ├── smask-text.pdf.ref.png │ │ │ ├── smask-text.ps2.ref.png │ │ │ ├── smask-text.ps3.ref.png │ │ │ ├── smask-text.svg.ref.png │ │ │ ├── smask.image16.ref.png │ │ │ ├── stroke-clipped.ref.png │ │ │ ├── subsurface-pad.ref.png │ │ │ ├── subsurface.ps.ref.png │ │ │ ├── text-rotate.ps.ref.png │ │ │ ├── text-transform.ref.png │ │ │ ├── transforms.ps2.ref.png │ │ │ ├── transforms.ps3.ref.png │ │ │ ├── unaligned-box.ref.png │ │ │ ├── user-font-mask.ref.png │ │ │ ├── user-font.pdf.ref.png │ │ │ ├── user-font.svg.ref.png │ │ │ ├── white-in-noop.ref.png │ │ │ ├── a1-bug.base.rgb24.ref.png │ │ │ ├── a1-bug.mask.rgb24.ref.png │ │ │ ├── a1-bug.quartz.xfail.png │ │ │ ├── a1-image-sample.ref.png │ │ │ ├── a1-line-width.pdf.ref.png │ │ │ ├── a1-line-width.ps.ref.png │ │ │ ├── a1-traps-sample.ref.png │ │ │ ├── a8-clear.argb32.ref.png │ │ │ ├── a8-clear.quartz.ref.png │ │ │ ├── aliasing.argb32.ref.png │ │ │ ├── aliasing.image16.ref.png │ │ │ ├── aliasing.quartz.ref.png │ │ │ ├── api-special-cases.ref.png │ │ │ ├── arc-direction.ps.ref.png │ │ │ ├── arc-infinite-loop.ref.png │ │ │ ├── arc-looping-dash.ref.png │ │ │ ├── big-line.argb32.ref.png │ │ │ ├── big-line.image16.ref.png │ │ │ ├── big-line.quartz.ref.png │ │ │ ├── bitmap-font.rgb24.ref.png │ │ │ ├── bug-40410.argb32.ref.png │ │ │ ├── bug-40410.rgb24.ref.png │ │ │ ├── bug-extents.rgb24.ref.png │ │ │ ├── bug-seams.image.xfail.png │ │ │ ├── caps-joins-alpha.ref.png │ │ │ ├── caps-joins-curve.ref.png │ │ │ ├── caps-joins.argb32.ref.png │ │ │ ├── caps-joins.rgb24.ref.png │ │ │ ├── caps-sub-paths.ps.ref.png │ │ │ ├── caps-tails-curve.ref.png │ │ │ ├── caps.base.argb32.ref.png │ │ │ ├── caps.base.rgb24.ref.png │ │ │ ├── caps.traps.argb32.ref.png │ │ │ ├── caps.traps.rgb24.ref.png │ │ │ ├── clear-source.ps.xfail.png │ │ │ ├── clear.base.argb32.ref.png │ │ │ ├── clear.base.rgb24.ref.png │ │ │ ├── clear.pdf.argb32.ref.png │ │ │ ├── clear.ps.argb32.ref.png │ │ │ ├── clear.traps.rgb24.ref.png │ │ │ ├── clip-disjoint.ps.ref.png │ │ │ ├── clip-empty-group.ref.png │ │ │ ├── clip-empty-save.ref.png │ │ │ ├── clip-fill-no-op.ref.png │ │ │ ├── clip-fill.argb32.ref.png │ │ │ ├── clip-fill.image16.ref.png │ │ │ ├── clip-fill.quartz.ref.png │ │ │ ├── clip-fill.rgb24.ref.png │ │ │ ├── clip-image.argb32.ref.png │ │ │ ├── clip-image.rgb24.ref.png │ │ │ ├── clip-operator.ps3.ref.png │ │ │ ├── clip-rectilinear.ref.png │ │ │ ├── clip-shape.argb32.ref.png │ │ │ ├── clip-shape.quartz.ref.png │ │ │ ├── clip-shape.rgb24.ref.png │ │ │ ├── clip-stroke-no-op.ref.png │ │ │ ├── clip-stroke.ps.xfail.png │ │ │ ├── clip-text.argb32.ref.png │ │ │ ├── clip-text.image16.ref.png │ │ │ ├── clip-text.quartz.ref.png │ │ │ ├── clip-text.rgb24.ref.png │ │ │ ├── clip-twice.argb32.ref.png │ │ │ ├── clip-twice.rgb24.ref.png │ │ │ ├── clip-xlib.argb32.ref.png │ │ │ ├── clip-xlib.rgb24.ref.png │ │ │ ├── clipped-group.pdf.ref.png │ │ │ ├── clipped-group.ps2.ref.png │ │ │ ├── clipped-group.ps3.ref.png │ │ │ ├── clipped-group.svg.ref.png │ │ │ ├── clipped-surface.ref.png │ │ │ ├── close-path.argb32.ref.png │ │ │ ├── close-path.rgb24.ref.png │ │ │ ├── copy-path.argb32.ref.png │ │ │ ├── copy-path.image16.ref.png │ │ │ ├── copy-path.rgb24.ref.png │ │ │ ├── culled-glyphs.ps.ref.png │ │ │ ├── dash-caps-joins.ref.png │ │ │ ├── dash-scale.quartz.ref.png │ │ │ ├── dash-state.argb32.ref.png │ │ │ ├── dash-state.rgb24.ref.png │ │ │ ├── degenerate-arcs.ref.png │ │ │ ├── degenerate-dash.ref.png │ │ │ ├── degenerate-pen.ps.ref.png │ │ │ ├── drunkard-tails.ps.ref.png │ │ │ ├── extend-pad.svg.xfail.png │ │ │ ├── extend-repeat.ps2.ref.png │ │ │ ├── extend-repeat.ps3.ref.png │ │ │ ├── fallback.argb32.ref.png │ │ │ ├── fill-alpha.argb32.ref.png │ │ │ ├── fill-alpha.quartz.ref.png │ │ │ ├── fill-alpha.rgb24.ref.png │ │ │ ├── fill-empty.argb32.ref.png │ │ │ ├── fill-empty.rgb24.ref.png │ │ │ ├── fill-image.argb32.ref.png │ │ │ ├── fill-image.quartz.ref.png │ │ │ ├── fill-image.rgb24.ref.png │ │ │ ├── fill-rule.argb32.ref.png │ │ │ ├── fill-rule.image16.ref.png │ │ │ ├── fill-rule.rgb24.ref.png │ │ │ ├── fill-xlib.argb32.ref.png │ │ │ ├── fill-xlib.rgb24.ref.png │ │ │ ├── get-group-target.ref.png │ │ │ ├── halo-transform.ps.ref.png │ │ │ ├── halo.base.argb32.ref.png │ │ │ ├── halo.base.rgb24.ref.png │ │ │ ├── halo.mask.argb32.ref.png │ │ │ ├── halo.mask.rgb24.ref.png │ │ │ ├── huge-linear.pdf.ref.png │ │ │ ├── huge-linear.ps3.ref.png │ │ │ ├── huge-linear.rgb24.ref.png │ │ │ ├── huge-radial.ps3.ref.png │ │ │ ├── implicit-close.ps.ref.png │ │ │ ├── infinite-join.ps2.ref.png │ │ │ ├── infinite-join.ps3.ref.png │ │ │ ├── inverted-clip.xfail.png │ │ │ ├── joins-loop.argb32.ref.png │ │ │ ├── joins-loop.rgb24.ref.png │ │ │ ├── joins-star.argb32.ref.png │ │ │ ├── joins-star.rgb24.ref.png │ │ │ ├── joins.base.argb32.ref.png │ │ │ ├── joins.base.rgb24.ref.png │ │ │ ├── joins.mask.argb32.ref.png │ │ │ ├── joins.mask.rgb24.ref.png │ │ │ ├── joins.traps.rgb24.ref.png │ │ │ ├── large-source-roi.ref.png │ │ │ ├── leaky-dash.quartz.ref.png │ │ │ ├── leaky-polygon.ps.ref.png │ │ │ ├── line-width.argb32.ref.png │ │ │ ├── line-width.rgb24.ref.png │ │ │ ├── map-all-to-image.ref.png │ │ │ ├── map-bit-to-image.ref.png │ │ │ ├── map-to-image-fill.ref.png │ │ │ ├── mask-alpha.argb32.ref.png │ │ │ ├── mask-alpha.rgb24.ref.png │ │ │ ├── mask-ctm.argb32.ref.png │ │ │ ├── mask-glyphs.pdf.ref.png │ │ │ ├── mask-glyphs.svg.ref.png │ │ │ ├── mask.base.argb32.ref.png │ │ │ ├── mask.base.rgb24.ref.png │ │ │ ├── mask.pdf.argb32.ref.png │ │ │ ├── mask.quartz.rgb24.ref.png │ │ │ ├── mask.svg.argb32.xfail.png │ │ │ ├── mask.svg.rgb24.xfail.png │ │ │ ├── mask.traps.argb32.ref.png │ │ │ ├── mask.traps.rgb24.ref.png │ │ │ ├── mesh-pattern-fold.ref.png │ │ │ ├── mime-data.script.ref.png │ │ │ ├── nil-surface.rgb24.ref.png │ │ │ ├── operator.argb32.ref.png │ │ │ ├── outline-tolerance.ref.png │ │ │ ├── paint-with-alpha.ref.png │ │ │ ├── paint.base.argb32.ref.png │ │ │ ├── paint.base.rgb24.ref.png │ │ │ ├── path-append.rgb24.ref.png │ │ │ ├── pattern-getters.ref.png │ │ │ ├── pthread-similar.ref.png │ │ │ ├── push-group.argb32.ref.png │ │ │ ├── push-group.rgb24.ref.png │ │ │ ├── radial-gradient.ref.png │ │ │ ├── raster-source.ps.ref.png │ │ │ ├── record-extend-pad.ref.png │ │ │ ├── record-fill-alpha.ref.png │ │ │ ├── recordflip-paint.ref.png │ │ │ ├── rectilinear-dash.ref.png │ │ │ ├── rectilinear-fill.ref.png │ │ │ ├── rectilinear-grid.ref.png │ │ │ ├── reflected-stroke.ref.png │ │ │ ├── rel-path.argb32.ref.png │ │ │ ├── rotated-clip.ps.ref.png │ │ │ ├── sample-diagonal.ref.png │ │ │ ├── sample-horizontal.ref.png │ │ │ ├── sample-vertical.ref.png │ │ │ ├── self-copy.argb32.ref.png │ │ │ ├── self-copy.rgb24.ref.png │ │ │ ├── self-intersecting.ref.png │ │ │ ├── set-source.argb32.ref.png │ │ │ ├── set-source.rgb24.ref.png │ │ │ ├── show-glyphs-many.ref.png │ │ │ ├── skew-extreme.ps2.ref.png │ │ │ ├── skew-extreme.ps3.ref.png │ │ │ ├── smask-fill.argb32.ref.png │ │ │ ├── smask-fill.quartz.ref.png │ │ │ ├── smask-fill.rgb24.ref.png │ │ │ ├── smask-mask.argb32.ref.png │ │ │ ├── smask-mask.quartz.ref.png │ │ │ ├── smask-mask.rgb24.ref.png │ │ │ ├── smask-paint.pdf.ref.png │ │ │ ├── smask-paint.rgb24.ref.png │ │ │ ├── smask-paint.svg.ref.png │ │ │ ├── smask-text.argb32.ref.png │ │ │ ├── smask-text.quartz.ref.png │ │ │ ├── smask-text.rgb24.ref.png │ │ │ ├── smask-text.script.ref.png │ │ │ ├── smask-text.traps.ref.png │ │ │ ├── smask.base.argb32.ref.png │ │ │ ├── smask.base.rgb24.ref.png │ │ │ ├── smask.mask.argb32.ref.png │ │ │ ├── smask.mask.rgb24.ref.png │ │ │ ├── source-clip-scale.ref.png │ │ │ ├── stride-12-image.ref.png │ │ │ ├── stroke-ctm-caps.ref.png │ │ │ ├── stroke-image.pdf.ref.png │ │ │ ├── stroke-image.ps.ref.png │ │ │ ├── stroke-open-box.ref.png │ │ │ ├── stroke-xlib.rgb24.ref.png │ │ │ ├── subsurface-repeat.ref.png │ │ │ ├── subsurface.argb32.ref.png │ │ │ ├── subsurface.rgb24.ref.png │ │ │ ├── text-rotate.pdf.ref.png │ │ │ ├── text-rotate.svg.ref.png │ │ │ ├── text-rotate.traps.ref.png │ │ │ ├── tiger.base.argb32.ref.png │ │ │ ├── tiger.base.rgb24.ref.png │ │ │ ├── tiger.traps.rgb24.ref.png │ │ │ ├── transforms.argb32.ref.png │ │ │ ├── transforms.rgb24.ref.png │ │ │ ├── trap-clip.argb32.ref.png │ │ │ ├── trap-clip.image16.ref.png │ │ │ ├── trap-clip.rgb24.ref.png │ │ │ ├── twin.base.argb32.ref.png │ │ │ ├── twin.base.rgb24.ref.png │ │ │ ├── twin.mask.argb32.ref.png │ │ │ ├── twin.mask.rgb24.ref.png │ │ │ ├── twin.traps.argb32.ref.png │ │ │ ├── twin.traps.rgb24.ref.png │ │ │ ├── user-font.image16.ref.png │ │ │ ├── user-font.quartz.ref.png │ │ │ ├── world-map.argb32.ref.png │ │ │ ├── world-map.image16.ref.png │ │ │ ├── world-map.rgb24.ref.png │ │ │ ├── xcb-huge-subimage.ref.png │ │ │ ├── xcb-stress-cache.ref.png │ │ │ ├── xlib-expose-event.ref.png │ │ │ ├── zero-mask.argb32.ref.png │ │ │ ├── zero-mask.rgb24.ref.png │ │ │ ├── a1-bug.base.argb32.ref.png │ │ │ ├── a1-bug.mask.argb32.ref.png │ │ │ ├── a1-bug.traps.argb32.ref.png │ │ │ ├── a1-bug.traps.rgb24.ref.png │ │ │ ├── a1-clip-fill-equal.ref.png │ │ │ ├── a1-fill.base.argb32.ref.png │ │ │ ├── a1-fill.base.rgb24.ref.png │ │ │ ├── a1-mask.base.argb32.ref.png │ │ │ ├── a1-mask.base.rgb24.ref.png │ │ │ ├── a1-rectilinear-grid.ref.png │ │ │ ├── a1-tiger.base.rgb24.ref.png │ │ │ ├── a1-tiger.mask.rgb24.ref.png │ │ │ ├── a8-clear.base.rgb24.ref.png │ │ │ ├── a8-mask.base.argb32.ref.png │ │ │ ├── a8-mask.base.rgb24.ref.png │ │ │ ├── aliasing.base.rgb24.ref.png │ │ │ ├── alpha-similar.rgb24.ref.png │ │ │ ├── arc-direction.rgb24.ref.png │ │ │ ├── arc-direction.traps.ref.png │ │ │ ├── arc-looping-dash.ps.ref.png │ │ │ ├── big-empty-box.rgb24.ref.png │ │ │ ├── big-line.base.rgb24.ref.png │ │ │ ├── big-trap.base.rgb24.ref.png │ │ │ ├── big-trap.mask.rgb24.ref.png │ │ │ ├── bilevel-xlib.argb32.ref.png │ │ │ ├── bilevel-xlib.rgb24.ref.png │ │ │ ├── bitmap-font.argb32.ref.png │ │ │ ├── bug-bo-rectangular.ref.png │ │ │ ├── bug-bo-ricotz.rgb24.ref.png │ │ │ ├── bug-bo-ricotz.traps.ref.png │ │ │ ├── bug-extents.argb32.ref.png │ │ │ ├── bug-extents.image16.ref.png │ │ │ ├── bug-extents.quartz.ref.png │ │ │ ├── bug-source-cu.rgb24.ref.png │ │ │ ├── caps-joins-05.traps.ref.png │ │ │ ├── caps-joins-1.traps.ref.png │ │ │ ├── caps-joins-2.traps.ref.png │ │ │ ├── caps-joins-curve.ps.ref.png │ │ │ ├── caps-joins.image16.ref.png │ │ │ ├── caps-tails-curve.ps.ref.png │ │ │ ├── clear-source.argb32.ref.png │ │ │ ├── clear-source.pdf.xfail.png │ │ │ ├── clear-source.rgb24.ref.png │ │ │ ├── clear.quartz.argb32.ref.png │ │ │ ├── clear.quartz.rgb24.ref.png │ │ │ ├── clear.svg12.rgb24.xfail.png │ │ │ ├── clear.traps.argb32.ref.png │ │ │ ├── clip-all.base.rgb24.ref.png │ │ │ ├── clip-disjoint-quad.ref.png │ │ │ ├── clip-image.image16.ref.png │ │ │ ├── clip-nesting.argb32.ref.png │ │ │ ├── clip-nesting.rgb24.ref.png │ │ │ ├── clip-operator.rgb24.ref.png │ │ │ ├── clip-polygons.rgb24.ref.png │ │ │ ├── clip-polygons.traps.ref.png │ │ │ ├── clip-push-group.pdf.ref.png │ │ │ ├── clip-push-group.ps.ref.png │ │ │ ├── clip-push-group.svg.ref.png │ │ │ ├── clip-shape.image16.ref.png │ │ │ ├── clip-stroke.image16.ref.png │ │ │ ├── clip-stroke.quartz.ref.png │ │ │ ├── clip-twice.image16.ref.png │ │ │ ├── clip-twice.ps.rgb24.ref.png │ │ │ ├── clipped-group.rgb24.ref.png │ │ │ ├── clipped-trapezoids.ref.png │ │ │ ├── coverage-rectangles.ref.png │ │ │ ├── coverage-triangles.ref.png │ │ │ ├── culled-glyphs.rgb24.ref.png │ │ │ ├── curve-to-as-line-to.ref.png │ │ │ ├── dash-caps-joins.ps.ref.png │ │ │ ├── dash-curve.image16.ref.png │ │ │ ├── dash-curve.quartz.xfail.png │ │ │ ├── dash-scale.image16.ref.png │ │ │ ├── dash-state.image16.ref.png │ │ │ ├── dash-state.quartz.xfail.png │ │ │ ├── degenerate-arc.ps2.ref.png │ │ │ ├── degenerate-arc.ps3.ref.png │ │ │ ├── degenerate-curve-to.ref.png │ │ │ ├── device-offset-scale.ref.png │ │ │ ├── device-offset.rgb24.ref.png │ │ │ ├── extend-pad-similar.ref.png │ │ │ ├── extend-pad.quartz.xfail.png │ │ │ ├── extend-reflect.ps2.ref.png │ │ │ ├── extend-reflect.ps3.ref.png │ │ │ ├── fallback.base.rgb24.ref.png │ │ │ ├── fallback.mask.rgb24.ref.png │ │ │ ├── fill-alpha.image16.ref.png │ │ │ ├── fill-image.image16.ref.png │ │ │ ├── fill-rule.ps2.rgb24.ref.png │ │ │ ├── fill-rule.ps3.rgb24.ref.png │ │ │ ├── group-clip.image16.ref.png │ │ │ ├── group-unaligned.ps.ref.png │ │ │ ├── huge-linear.argb32.ref.png │ │ │ ├── huge-linear.image16.ref.png │ │ │ ├── huge-linear.quartz.ref.png │ │ │ ├── huge-radial.image16.ref.png │ │ │ ├── huge-radial.quartz.ref.png │ │ │ ├── infinite-join.rgb24.ref.png │ │ │ ├── inverse-text.traps.ref.png │ │ │ ├── joins.traps.argb32.ref.png │ │ │ ├── large-font.image16.ref.png │ │ │ ├── leaky-polygon.rgb24.ref.png │ │ │ ├── line-width-overlap.ref.png │ │ │ ├── linear-gradient.ps3.ref.png │ │ │ ├── mask-alpha.image16.ref.png │ │ │ ├── mask-ctm.base.rgb24.ref.png │ │ │ ├── mask-glyphs.image16.ref.png │ │ │ ├── mask.quartz.argb32.ref.png │ │ │ ├── miter-precision.ps2.ref.png │ │ │ ├── miter-precision.ps3.ref.png │ │ │ ├── new-sub-path.argb32.ref.png │ │ │ ├── new-sub-path.quartz.ref.png │ │ │ ├── new-sub-path.rgb24.ref.png │ │ │ ├── nil-surface.argb32.ref.png │ │ │ ├── operator.base.rgb24.ref.png │ │ │ ├── paint-clip-fill-aa.ref.png │ │ │ ├── paint-source-alpha.ref.png │ │ │ ├── pass-through.argb32.ref.png │ │ │ ├── pass-through.rgb24.ref.png │ │ │ ├── path-append.argb32.ref.png │ │ │ ├── path-append.image16.ref.png │ │ │ ├── path-append.quartz.ref.png │ │ │ ├── pdf-isolated-group.ref.png │ │ │ ├── pixman-rotate.rgb24.ref.png │ │ │ ├── pthread-same-source.ref.png │ │ │ ├── push-group.image16.ref.png │ │ │ ├── record-extend-none.ref.png │ │ │ ├── record-fill-alpha.xfail.png │ │ │ ├── record-paint-alpha.ref.png │ │ │ ├── record2x-fill-alpha.ref.png │ │ │ ├── record90-fill-alpha.ref.png │ │ │ ├── rectilinear-stroke.ref.png │ │ │ ├── reflected-stroke.ps.ref.png │ │ │ ├── rel-path.base.rgb24.ref.png │ │ │ ├── rel-path.mask.rgb24.ref.png │ │ │ ├── rel-path.ps2.rgb24.ref.png │ │ │ ├── rel-path.ps3.rgb24.ref.png │ │ │ ├── rgb24-ignore-alpha.ref.png │ │ │ ├── rotated-clip.argb32.ref.png │ │ │ ├── rotated-clip.quartz.ref.png │ │ │ ├── rotated-clip.rgb24.ref.png │ │ │ ├── shape-sierpinski.ps.ref.png │ │ │ ├── skew-extreme.argb32.ref.png │ │ │ ├── skew-extreme.rgb24.ref.png │ │ │ ├── smask-fill.image16.ref.png │ │ │ ├── smask-mask.image16.ref.png │ │ │ ├── smask-paint.argb32.ref.png │ │ │ ├── smask-paint.image16.ref.png │ │ │ ├── smask-paint.quartz.ref.png │ │ │ ├── smask-stroke.argb32.ref.png │ │ │ ├── smask-stroke.pdf.xfail.png │ │ │ ├── smask-stroke.quartz.ref.png │ │ │ ├── smask-stroke.rgb24.ref.png │ │ │ ├── smask-text.image16.ref.png │ │ │ ├── smask.xlib-fallback.ref.png │ │ │ ├── stride-12-image.ps.ref.png │ │ │ ├── stroke-ctm-caps.ps2.ref.png │ │ │ ├── stroke-ctm-caps.ps3.ref.png │ │ │ ├── stroke-image.argb32.ref.png │ │ │ ├── stroke-image.quartz.ref.png │ │ │ ├── stroke-image.rgb24.ref.png │ │ │ ├── stroke-xlib.argb32.ref.png │ │ │ ├── subsurface-reflect.ref.png │ │ │ ├── subsurface.image16.ref.png │ │ │ ├── text-antialias-none.ref.png │ │ │ ├── text-glyph-range.ps.ref.png │ │ │ ├── text-pattern.argb32.ref.png │ │ │ ├── text-pattern.rgb24.ref.png │ │ │ ├── text-rotate.image16.ref.png │ │ │ ├── text-rotate.quartz.ref.png │ │ │ ├── text-transform.ps2.ref.png │ │ │ ├── text-transform.ps3.ref.png │ │ │ ├── text-transform.svg.ref.png │ │ │ ├── tiger.traps.argb32.ref.png │ │ │ ├── transforms.image16.ref.png │ │ │ ├── trap-clip.ps2.rgb24.ref.png │ │ │ ├── trap-clip.ps3.rgb24.ref.png │ │ │ ├── twin-antialias-gray.ref.png │ │ │ ├── user-font-mask.pdf.ref.png │ │ │ ├── user-font-mask.ps2.ref.png │ │ │ ├── user-font-mask.ps3.ref.png │ │ │ ├── user-font-mask.svg.ref.png │ │ │ ├── user-font-proxy.pdf.ref.png │ │ │ ├── user-font-proxy.ps.ref.png │ │ │ ├── user-font-proxy.svg.ref.png │ │ │ ├── xcb-huge-image-shm.ref.png │ │ │ ├── xcb-snapshot-assert.ref.png │ │ │ ├── a1-image-sample.gl.xfail.png │ │ │ ├── a1-sample.base.argb32.ref.png │ │ │ ├── a1-sample.base.rgb24.ref.png │ │ │ ├── a1-tiger.base.argb32.ref.png │ │ │ ├── a1-tiger.mask.argb32.ref.png │ │ │ ├── a1-tiger.traps.argb32.ref.png │ │ │ ├── a1-tiger.traps.rgb24.ref.png │ │ │ ├── a8-clear.base.argb32.ref.png │ │ │ ├── a8-clear.traps.argb32.ref.png │ │ │ ├── a8-clear.traps.rgb24.ref.png │ │ │ ├── aliasing.base.argb32.ref.png │ │ │ ├── aliasing.traps.argb32.ref.png │ │ │ ├── aliasing.traps.rgb24.ref.png │ │ │ ├── alpha-similar.argb32.ref.png │ │ │ ├── arc-direction.argb32.ref.png │ │ │ ├── big-empty-box.argb32.ref.png │ │ │ ├── big-line.base.argb32.ref.png │ │ │ ├── big-line.traps.argb32.ref.png │ │ │ ├── big-line.traps.rgb24.ref.png │ │ │ ├── big-little-box.argb32.ref.png │ │ │ ├── big-little-box.rgb24.ref.png │ │ │ ├── big-trap.base.argb32.ref.png │ │ │ ├── big-trap.mask.argb32.ref.png │ │ │ ├── big-trap.traps.argb32.ref.png │ │ │ ├── big-trap.traps.rgb24.ref.png │ │ │ ├── bitmap-font.base.rgb24.ref.png │ │ │ ├── bug-40410.base.argb32.ref.png │ │ │ ├── bug-40410.base.rgb24.ref.png │ │ │ ├── bug-40410.traps.argb32.ref.png │ │ │ ├── bug-40410.traps.rgb24.ref.png │ │ │ ├── bug-bo-ricotz.argb32.ref.png │ │ │ ├── bug-extents.base.rgb24.ref.png │ │ │ ├── bug-seams.base.argb32.ref.png │ │ │ ├── bug-seams.base.rgb24.ref.png │ │ │ ├── bug-seams.mask.argb32.ref.png │ │ │ ├── bug-seams.mask.rgb24.ref.png │ │ │ ├── bug-seams.traps.argb32.ref.png │ │ │ ├── bug-seams.traps.rgb24.ref.png │ │ │ ├── bug-source-cu.argb32.ref.png │ │ │ ├── caps-joins.base.argb32.ref.png │ │ │ ├── caps-joins.base.rgb24.ref.png │ │ │ ├── caps-joins.traps.rgb24.ref.png │ │ │ ├── caps-sub-paths.argb32.ref.png │ │ │ ├── caps-sub-paths.image16.ref.png │ │ │ ├── caps-sub-paths.rgb24.ref.png │ │ │ ├── caps-tails-curve.xcb.ref.png │ │ │ ├── clear-source.image16.ref.png │ │ │ ├── clear.svg12.argb32.xfail.png │ │ │ ├── clip-all.base.argb32.ref.png │ │ │ ├── clip-complex-bug61492.ref.png │ │ │ ├── clip-disjoint.image16.ref.png │ │ │ ├── clip-disjoint.quartz.ref.png │ │ │ ├── clip-empty.base.argb32.ref.png │ │ │ ├── clip-empty.base.rgb24.ref.png │ │ │ ├── clip-fill-rule.argb32.ref.png │ │ │ ├── clip-fill-rule.image16.ref.png │ │ │ ├── clip-fill-rule.rgb24.ref.png │ │ │ ├── clip-fill.base.argb32.ref.png │ │ │ ├── clip-fill.base.rgb24.ref.png │ │ │ ├── clip-fill.mask.argb32.ref.png │ │ │ ├── clip-fill.mask.rgb24.ref.png │ │ │ ├── clip-fill.traps.argb32.ref.png │ │ │ ├── clip-fill.traps.rgb24.ref.png │ │ │ ├── clip-image.base.argb32.ref.png │ │ │ ├── clip-image.base.rgb24.ref.png │ │ │ ├── clip-image.mask.argb32.ref.png │ │ │ ├── clip-image.mask.rgb24.ref.png │ │ │ ├── clip-image.traps.rgb24.ref.png │ │ │ ├── clip-intersect.argb32.ref.png │ │ │ ├── clip-intersect.rgb24.ref.png │ │ │ ├── clip-nesting.ps.argb32.ref.png │ │ │ ├── clip-nesting.ps.rgb24.ref.png │ │ │ ├── clip-operator.argb32.ref.png │ │ │ ├── clip-operator.image16.ref.png │ │ │ ├── clip-polygons.argb32.ref.png │ │ │ ├── clip-push-group.argb32.ref.png │ │ │ ├── clip-push-group.quartz.ref.png │ │ │ ├── clip-push-group.rgb24.ref.png │ │ │ ├── clip-rectilinear.traps.ref.png │ │ │ └── clip-shape.base.argb32.ref.png │ │ ├── clipped-trapezoids-ref.png │ │ └── composite-integer-translate-over.c │ │ └── src │ │ ├── check-has-hidden-symbols.c │ │ ├── cairo-vg.h │ │ ├── cairo-quartz.h │ │ ├── cairo-quartz-image.h │ │ ├── cairo-skia-surface.cpp │ │ └── skia │ │ └── cairo-skia-surface.cpp │ └── standalone_functions.cpp ├── tests └── sample-draw │ ├── refimpl_about_window.ui │ ├── small.ico │ └── resource.h └── doc └── p0267r0.pdf /io2d/src/3rd-party/pixman/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /io2d/src/3rd-party/pixman/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /io2d/src/3rd-party/pixman/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/public/cairo.types: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample-draw/refimpl_about_window.ui: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/public/cairo-overrides.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/util/cairo-trace/.gitignore: -------------------------------------------------------------------------------- 1 | cairo-trace 2 | -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/util/cairo-sphinx/.gitignore: -------------------------------------------------------------------------------- 1 | cairo-sphinx 2 | -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | Makefile.in 3 | *~ 4 | -------------------------------------------------------------------------------- /doc/p0267r0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/doc/p0267r0.pdf -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/pdiff/.gitignore: -------------------------------------------------------------------------------- 1 | TAGS 2 | tags 3 | perceptualdiff 4 | -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/util/cairo-script/.gitignore: -------------------------------------------------------------------------------- 1 | csi-replay 2 | csi-exec 3 | csi-trace 4 | -------------------------------------------------------------------------------- /io2d/src/3rd-party/pixman/config.h.cmake: -------------------------------------------------------------------------------- 1 | #cmakedefine HAVE_PTHREADS 1 2 | #define PACKAGE 1 3 | -------------------------------------------------------------------------------- /tests/sample-draw/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/tests/sample-draw/small.ico -------------------------------------------------------------------------------- /tests/sample-draw/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/tests/sample-draw/resource.h -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/src/check-has-hidden-symbols.c: -------------------------------------------------------------------------------- 1 | #include "cairoint.h" 2 | 3 | CAIRO_HAS_HIDDEN_SYMBOLS 4 | -------------------------------------------------------------------------------- /io2d/src/standalone_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/standalone_functions.cpp -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/tutorial/src/.gitignore: -------------------------------------------------------------------------------- 1 | *-gtk 2 | *-pdf 3 | *-png 4 | *-xlib 5 | *.pdf 6 | *.png 7 | *.o 8 | *~ 9 | -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/jp2.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/jp2.jp2 -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/png.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/pixman/pixman/pixman-access-accessors.c: -------------------------------------------------------------------------------- 1 | #define PIXMAN_FB_ACCESSORS 2 | 3 | #include "pixman-access.c" 4 | -------------------------------------------------------------------------------- /io2d/src/3rd-party/pixman/pixman/pixman-edge-accessors.c: -------------------------------------------------------------------------------- 1 | 2 | #define PIXMAN_FB_ACCESSORS 3 | 4 | #include "pixman-edge.c" 5 | -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/src/cairo-vg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/src/cairo-vg.h -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/6x13.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/6x13.pcf -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/jpeg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/jpeg.jpg -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/scarab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/scarab.jpg -------------------------------------------------------------------------------- /io2d/src/3rd-party/pixman/demos/parrot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/pixman/demos/parrot.jpg -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/src/cairo-quartz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/src/cairo-quartz.h -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/romedalen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/romedalen.jpg -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/romedalen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/romedalen.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/degenerate-dash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/degenerate-dash.c -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/degenerate-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/degenerate-path.c -------------------------------------------------------------------------------- /io2d/src/3rd-party/pixman/demos/zone_plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/pixman/demos/zone_plate.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/src/cairo-quartz-image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/src/cairo-quartz-image.h -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/long-dashed-lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/long-dashed-lines.c -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reflected-stroke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reflected-stroke.c -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/user-font-rescale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/user-font-rescale.c -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/src/cairo-skia-surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/src/cairo-skia-surface.cpp -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/halo.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/halo.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/twin.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/twin.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-bug.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-bug.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-fill.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-fill.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-mask.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-mask.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a8-mask.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a8-mask.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-05.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-05.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-1.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-1.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/halo.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/halo.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/paint.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/paint.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/ps-eps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/ps-eps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/twin.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/twin.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/src/skia/cairo-skia-surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/src/skia/cairo-skia-surface.cpp -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/clipped-trapezoids-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/clipped-trapezoids-ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-sample.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-sample.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-tiger.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-tiger.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-51910.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-51910.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-seams.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-seams.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-all.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-all.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/hatchings.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/hatchings.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mime-data.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mime-data.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/twin.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/twin.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/user-font.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/user-font.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-ooo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-ooo.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-clip-fill.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-clip-fill.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-line.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-line.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-spline.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-spline.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-1.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-1.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-2.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-2.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins-1.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins-1.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins-2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins-2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/checkerboard.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/checkerboard.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-empty.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-empty.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-stroke.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-stroke.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/copy-path.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/copy-path.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-curve.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-curve.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-no-dash.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-no-dash.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-offset.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-offset.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-scale.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-scale.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/extend-pad.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/extend-pad.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/group-clip.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/group-clip.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/group-paint.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/group-paint.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/halo.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/halo.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/halo.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/halo.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/halo.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/halo.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/huge-radial.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/huge-radial.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/large-clip.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/large-clip.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/large-font.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/large-font.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/large-source.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/large-source.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/leaky-dash.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/leaky-dash.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask-glyphs.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask-glyphs.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mesh-pattern.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mesh-pattern.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mime-data.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mime-data.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/paint-repeat.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/paint-repeat.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/random-clip.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/random-clip.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/record-mesh.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/record-mesh.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/record-paint.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/record-paint.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask.pdf.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask.pdf.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask.script.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask.script.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/source-clip.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/source-clip.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-rotate.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-rotate.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/tiger.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/tiger.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/tiger.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/tiger.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/twin.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/twin.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/user-font.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/user-font.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/zero-alpha.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/zero-alpha.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-cairo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-cairo.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-bug.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-bug.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-clip-paint.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-clip-paint.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-clip-stroke.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-clip-stroke.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-line-width.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-line-width.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-mask-sample.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-mask-sample.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a8-clear.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a8-clear.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/aliasing.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/aliasing.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-line.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-line.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bilevel-image.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bilevel-image.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-bo-collins.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-bo-collins.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-extents.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-extents.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-05.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-05.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins-05.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins-05.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-contexts.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-contexts.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-disjoint.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-disjoint.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill.ps.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill.ps.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-image.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-image.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-shape.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-shape.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-text.ps.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-text.ps.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-text.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-text.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/close-path.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/close-path.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/close-path.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/close-path.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/copy-disjoint.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/copy-disjoint.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-curve.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-curve.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-curve.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-curve.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-scale.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-scale.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-state.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-state.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-state.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-state.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/degenerate-arc.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/degenerate-arc.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/drunkard-tails.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/drunkard-tails.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/extend-pad.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/extend-pad.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/extend-reflect.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/extend-reflect.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/extend-repeat.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/extend-repeat.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fallback.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fallback.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-disjoint.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-disjoint.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-image.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-image.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/implicit-close.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/implicit-close.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins-retrace.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins-retrace.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/linear-uniform.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/linear-uniform.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask-alpha.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask-alpha.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask-ctm.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask-ctm.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask-glyphs.gl.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask-glyphs.gl.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask.pdf.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask.pdf.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mime-data.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mime-data.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mime-data.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mime-data.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/operator.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/operator.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/path-append.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/path-append.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/raster-source.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/raster-source.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rel-path.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rel-path.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/self-copy.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/self-copy.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/self-copy.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/self-copy.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-fill.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-fill.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-fill.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-fill.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-mask.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-mask.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-mask.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-mask.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-text.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-text.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-text.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-text.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-text.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-text.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-text.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-text.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/stroke-clipped.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/stroke-clipped.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/subsurface-pad.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/subsurface-pad.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/subsurface.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/subsurface.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-rotate.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-rotate.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-transform.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-transform.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/transforms.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/transforms.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/transforms.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/transforms.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/unaligned-box.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/unaligned-box.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/user-font-mask.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/user-font-mask.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/user-font.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/user-font.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/user-font.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/user-font.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/white-in-noop.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/white-in-noop.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/tutorial/slides/.gitignore: -------------------------------------------------------------------------------- 1 | tutorial-???.html 2 | tutorial-???.png 3 | tutorial-???.svg 4 | tutorial-index.xml 5 | tutorial.pdf 6 | index.html 7 | *~ 8 | -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-ooo-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-ooo-large.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-fuzzy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-fuzzy.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-sharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-sharp.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/tutorial/slides/rendering-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/doc/tutorial/slides/rendering-model.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/composite-integer-translate-over.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/composite-integer-translate-over.c -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-bug.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-bug.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-bug.mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-bug.mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-bug.quartz.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-bug.quartz.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-image-sample.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-image-sample.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-line-width.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-line-width.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-line-width.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-line-width.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-traps-sample.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-traps-sample.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a8-clear.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a8-clear.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a8-clear.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a8-clear.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/aliasing.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/aliasing.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/aliasing.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/aliasing.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/aliasing.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/aliasing.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/api-special-cases.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/api-special-cases.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/arc-direction.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/arc-direction.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/arc-infinite-loop.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/arc-infinite-loop.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-line.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-line.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-line.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-line.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-line.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-line.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bitmap-font.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bitmap-font.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-40410.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-40410.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-40410.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-40410.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-extents.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-extents.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-seams.image.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-seams.image.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins-alpha.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear-source.ps.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear-source.ps.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear.pdf.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear.pdf.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear.ps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear.ps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-disjoint.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-disjoint.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-empty-group.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-empty-group.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-empty-save.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-empty-save.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill-no-op.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill-no-op.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-image.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-image.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-image.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-image.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-operator.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-operator.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-shape.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-shape.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-shape.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-shape.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-shape.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-shape.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-stroke-no-op.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-stroke-no-op.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-stroke.ps.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-stroke.ps.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-text.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-text.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-text.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-text.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-text.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-text.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-text.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-text.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-twice.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-twice.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-twice.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-twice.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-xlib.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-xlib.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-xlib.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-xlib.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clipped-group.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clipped-group.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clipped-group.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clipped-group.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clipped-group.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clipped-group.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clipped-group.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clipped-group.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clipped-surface.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clipped-surface.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/close-path.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/close-path.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/close-path.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/close-path.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/copy-path.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/copy-path.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/copy-path.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/copy-path.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/copy-path.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/copy-path.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/culled-glyphs.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/culled-glyphs.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-scale.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-scale.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-state.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-state.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-state.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-state.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/degenerate-arcs.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/degenerate-arcs.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/degenerate-dash.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/degenerate-dash.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/degenerate-pen.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/degenerate-pen.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/drunkard-tails.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/drunkard-tails.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/extend-pad.svg.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/extend-pad.svg.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/extend-repeat.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/extend-repeat.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/extend-repeat.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/extend-repeat.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fallback.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fallback.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-alpha.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-alpha.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-alpha.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-alpha.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-alpha.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-alpha.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-empty.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-empty.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-empty.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-empty.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-image.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-image.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-image.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-image.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-image.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-image.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-rule.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-rule.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-rule.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-rule.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-rule.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-rule.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-xlib.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-xlib.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-xlib.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-xlib.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/get-group-target.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/get-group-target.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/halo-transform.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/halo-transform.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/halo.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/halo.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/halo.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/halo.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/halo.mask.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/halo.mask.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/halo.mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/halo.mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/huge-linear.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/huge-linear.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/huge-linear.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/huge-linear.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/huge-linear.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/huge-linear.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/huge-radial.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/huge-radial.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/implicit-close.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/implicit-close.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/infinite-join.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/infinite-join.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/infinite-join.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/infinite-join.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/inverted-clip.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/inverted-clip.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins-loop.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins-loop.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins-loop.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins-loop.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins-star.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins-star.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins-star.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins-star.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins.mask.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins.mask.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins.mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins.mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/large-source-roi.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/large-source-roi.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/leaky-dash.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/leaky-dash.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/leaky-polygon.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/leaky-polygon.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/line-width.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/line-width.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/line-width.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/line-width.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/map-all-to-image.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/map-all-to-image.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/map-bit-to-image.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/map-bit-to-image.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/map-to-image-fill.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/map-to-image-fill.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask-alpha.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask-alpha.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask-alpha.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask-alpha.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask-ctm.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask-ctm.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask-glyphs.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask-glyphs.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask-glyphs.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask-glyphs.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask.pdf.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask.pdf.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask.quartz.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask.quartz.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask.svg.argb32.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask.svg.argb32.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask.svg.rgb24.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask.svg.rgb24.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mesh-pattern-fold.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mesh-pattern-fold.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mime-data.script.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mime-data.script.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/nil-surface.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/nil-surface.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/operator.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/operator.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/outline-tolerance.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/outline-tolerance.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/paint-with-alpha.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/paint-with-alpha.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/paint.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/paint.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/paint.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/paint.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/path-append.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/path-append.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/pattern-getters.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/pattern-getters.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/pthread-similar.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/pthread-similar.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/push-group.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/push-group.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/push-group.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/push-group.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/radial-gradient.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/radial-gradient.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/raster-source.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/raster-source.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/record-extend-pad.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/record-extend-pad.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/recordflip-paint.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/recordflip-paint.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rectilinear-dash.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rectilinear-fill.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rectilinear-fill.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rectilinear-grid.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rectilinear-grid.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/reflected-stroke.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/reflected-stroke.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rel-path.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rel-path.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rotated-clip.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rotated-clip.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/sample-diagonal.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/sample-diagonal.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/sample-horizontal.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/sample-horizontal.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/sample-vertical.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/sample-vertical.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/self-copy.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/self-copy.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/self-copy.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/self-copy.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/self-intersecting.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/self-intersecting.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/set-source.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/set-source.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/set-source.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/set-source.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/show-glyphs-many.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/show-glyphs-many.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/skew-extreme.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/skew-extreme.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/skew-extreme.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/skew-extreme.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-fill.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-fill.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-fill.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-fill.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-fill.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-fill.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-mask.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-mask.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-mask.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-mask.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-paint.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-paint.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-paint.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-paint.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-paint.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-paint.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-text.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-text.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-text.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-text.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-text.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-text.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-text.script.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-text.script.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-text.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-text.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask.mask.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask.mask.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask.mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask.mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/source-clip-scale.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/source-clip-scale.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/stride-12-image.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/stride-12-image.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/stroke-image.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/stroke-image.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/stroke-image.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/stroke-image.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/stroke-open-box.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/stroke-open-box.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/stroke-xlib.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/stroke-xlib.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/subsurface-repeat.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/subsurface-repeat.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/subsurface.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/subsurface.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/subsurface.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/subsurface.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-rotate.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-rotate.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-rotate.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-rotate.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-rotate.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-rotate.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/tiger.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/tiger.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/tiger.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/tiger.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/tiger.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/tiger.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/transforms.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/transforms.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/transforms.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/transforms.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/trap-clip.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/trap-clip.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/trap-clip.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/trap-clip.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/trap-clip.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/trap-clip.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/twin.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/twin.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/twin.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/twin.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/twin.mask.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/twin.mask.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/twin.mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/twin.mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/twin.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/twin.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/twin.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/twin.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/user-font.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/user-font.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/user-font.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/user-font.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/world-map.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/world-map.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/world-map.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/world-map.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/world-map.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/world-map.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/xcb-huge-subimage.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/xcb-huge-subimage.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/xcb-stress-cache.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/xcb-stress-cache.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/xlib-expose-event.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/xlib-expose-event.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/zero-mask.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/zero-mask.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/zero-mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/zero-mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-cairo-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/doc/tutorial/slides/circle-cairo-large.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-bug.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-bug.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-bug.mask.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-bug.mask.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-bug.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-bug.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-bug.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-bug.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-equal.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-clip-fill-equal.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-fill.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-fill.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-fill.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-fill.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-mask.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-mask.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-mask.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-mask.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-rectilinear-grid.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-rectilinear-grid.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-tiger.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-tiger.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-tiger.mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-tiger.mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a8-clear.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a8-clear.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a8-mask.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a8-mask.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a8-mask.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a8-mask.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/aliasing.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/aliasing.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/alpha-similar.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/alpha-similar.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/arc-direction.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/arc-direction.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/arc-direction.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/arc-direction.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/arc-looping-dash.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-empty-box.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-empty-box.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-line.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-line.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-trap.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-trap.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-trap.mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-trap.mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bilevel-xlib.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bilevel-xlib.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bilevel-xlib.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bilevel-xlib.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bitmap-font.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bitmap-font.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-bo-rectangular.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-bo-rectangular.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-extents.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-extents.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-extents.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-extents.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-extents.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-extents.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-source-cu.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-source-cu.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins-05.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins-05.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins-1.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins-1.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins-2.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins-2.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins-curve.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear-source.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear-source.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear-source.pdf.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear-source.pdf.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear-source.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear-source.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear.quartz.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear.quartz.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear.quartz.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear.quartz.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear.svg12.rgb24.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear.svg12.rgb24.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-all.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-all.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-disjoint-quad.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-disjoint-quad.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-image.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-image.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-nesting.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-nesting.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-nesting.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-nesting.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-operator.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-operator.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-polygons.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-polygons.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-polygons.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-polygons.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-push-group.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-push-group.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-push-group.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-push-group.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-push-group.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-push-group.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-shape.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-shape.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-stroke.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-stroke.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-stroke.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-stroke.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-twice.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-twice.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-twice.ps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-twice.ps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clipped-group.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clipped-group.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clipped-trapezoids.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clipped-trapezoids.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/coverage-rectangles.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/coverage-rectangles.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/coverage-triangles.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/coverage-triangles.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/culled-glyphs.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/culled-glyphs.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/curve-to-as-line-to.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-caps-joins.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-curve.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-curve.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-curve.quartz.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-curve.quartz.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-scale.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-scale.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-state.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-state.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/dash-state.quartz.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/dash-state.quartz.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/degenerate-arc.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/degenerate-arc.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/degenerate-arc.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/degenerate-arc.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/degenerate-curve-to.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/device-offset-scale.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/device-offset-scale.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/device-offset.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/device-offset.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/extend-pad-similar.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/extend-pad-similar.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/extend-pad.quartz.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/extend-pad.quartz.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/extend-reflect.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/extend-reflect.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/extend-reflect.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/extend-reflect.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fallback.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fallback.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fallback.mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fallback.mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-alpha.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-alpha.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-image.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-image.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-rule.ps2.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-rule.ps2.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/fill-rule.ps3.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/fill-rule.ps3.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/group-clip.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/group-clip.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/group-unaligned.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/group-unaligned.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/huge-linear.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/huge-linear.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/huge-linear.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/huge-linear.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/huge-linear.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/huge-linear.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/huge-radial.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/huge-radial.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/huge-radial.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/huge-radial.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/infinite-join.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/infinite-join.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/inverse-text.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/inverse-text.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/joins.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/joins.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/large-font.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/large-font.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/leaky-polygon.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/leaky-polygon.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/line-width-overlap.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/line-width-overlap.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/linear-gradient.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/linear-gradient.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask-alpha.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask-alpha.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask-ctm.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask-ctm.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask-glyphs.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask-glyphs.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/mask.quartz.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/mask.quartz.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/miter-precision.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/miter-precision.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/miter-precision.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/miter-precision.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/new-sub-path.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/new-sub-path.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/new-sub-path.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/new-sub-path.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/new-sub-path.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/new-sub-path.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/nil-surface.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/nil-surface.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/operator.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/operator.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/paint-clip-fill-aa.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/paint-clip-fill-aa.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/paint-source-alpha.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/paint-source-alpha.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/pass-through.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/pass-through.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/pass-through.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/pass-through.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/path-append.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/path-append.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/path-append.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/path-append.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/path-append.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/path-append.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/pdf-isolated-group.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/pdf-isolated-group.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/pixman-rotate.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/pixman-rotate.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/pthread-same-source.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/pthread-same-source.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/push-group.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/push-group.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/record-extend-none.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/record-extend-none.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/record-fill-alpha.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/record-paint-alpha.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/record-paint-alpha.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/record2x-fill-alpha.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/record2x-fill-alpha.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/record90-fill-alpha.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/record90-fill-alpha.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rectilinear-stroke.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rectilinear-stroke.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/reflected-stroke.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/reflected-stroke.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rel-path.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rel-path.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rel-path.mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rel-path.mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rel-path.ps2.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rel-path.ps2.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rel-path.ps3.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rel-path.ps3.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rgb24-ignore-alpha.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rgb24-ignore-alpha.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rotated-clip.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rotated-clip.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rotated-clip.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rotated-clip.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/rotated-clip.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/rotated-clip.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/shape-sierpinski.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/skew-extreme.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/skew-extreme.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/skew-extreme.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/skew-extreme.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-fill.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-fill.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-mask.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-mask.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-paint.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-paint.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-paint.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-paint.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-paint.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-paint.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-stroke.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-stroke.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-stroke.pdf.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-stroke.pdf.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-stroke.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-stroke.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-stroke.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-stroke.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask-text.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask-text.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/smask.xlib-fallback.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/smask.xlib-fallback.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/stride-12-image.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/stride-12-image.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/stroke-ctm-caps.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/stroke-image.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/stroke-image.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/stroke-image.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/stroke-image.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/stroke-image.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/stroke-image.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/stroke-xlib.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/stroke-xlib.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/subsurface-reflect.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/subsurface-reflect.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/subsurface.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/subsurface.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-antialias-none.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-antialias-none.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-glyph-range.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-glyph-range.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-pattern.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-pattern.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-pattern.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-pattern.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-rotate.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-rotate.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-rotate.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-rotate.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-transform.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-transform.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-transform.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-transform.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/text-transform.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/text-transform.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/tiger.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/tiger.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/transforms.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/transforms.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/trap-clip.ps2.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/trap-clip.ps2.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/trap-clip.ps3.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/trap-clip.ps3.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/twin-antialias-gray.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/user-font-mask.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/user-font-mask.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/user-font-mask.ps2.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/user-font-mask.ps2.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/user-font-mask.ps3.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/user-font-mask.ps3.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/user-font-mask.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/user-font-mask.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/user-font-proxy.pdf.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.pdf.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/user-font-proxy.ps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.ps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/user-font-proxy.svg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/user-font-proxy.svg.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/xcb-huge-image-shm.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/xcb-huge-image-shm.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/xcb-snapshot-assert.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/xcb-snapshot-assert.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/Makefile.am: -------------------------------------------------------------------------------- 1 | include $(top_srcdir)/build/Makefile.am.common 2 | 3 | SUBDIRS=public 4 | 5 | doc: 6 | cd public && $(MAKE) $(AM_MAKEFLAGS) doc 7 | .PHONY: doc 8 | -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-fuzzy-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-fuzzy-large.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-sharp-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/doc/tutorial/slides/expander-sharp-large.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-image-sample.gl.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-image-sample.gl.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-sample.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-sample.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-sample.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-sample.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-tiger.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-tiger.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-tiger.mask.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-tiger.mask.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-tiger.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-tiger.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a1-tiger.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a1-tiger.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a8-clear.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a8-clear.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a8-clear.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a8-clear.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/a8-clear.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/a8-clear.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/aliasing.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/aliasing.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/aliasing.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/aliasing.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/aliasing.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/aliasing.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/alpha-similar.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/alpha-similar.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/arc-direction.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/arc-direction.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-empty-box.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-empty-box.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-line.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-line.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-line.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-line.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-line.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-line.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-little-box.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-little-box.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-little-box.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-little-box.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-trap.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-trap.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-trap.mask.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-trap.mask.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-trap.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-trap.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/big-trap.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/big-trap.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bitmap-font.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bitmap-font.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-40410.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-40410.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-40410.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-40410.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-40410.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-40410.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-40410.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-40410.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-bo-ricotz.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-extents.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-extents.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-seams.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-seams.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-seams.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-seams.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-seams.mask.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-seams.mask.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-seams.mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-seams.mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-seams.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-seams.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-seams.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-seams.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/bug-source-cu.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/bug-source-cu.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-joins.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-joins.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-sub-paths.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.xcb.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/caps-tails-curve.xcb.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear-source.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear-source.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clear.svg12.argb32.xfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clear.svg12.argb32.xfail.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-all.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-all.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-complex-bug61492.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-complex-bug61492.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-disjoint.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-disjoint.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-disjoint.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-disjoint.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-empty.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-empty.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-empty.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-empty.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill-rule.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill.mask.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill.mask.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill.mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill.mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill.traps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill.traps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-fill.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-fill.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-image.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-image.base.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-image.base.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-image.base.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-image.mask.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-image.mask.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-image.mask.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-image.mask.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-image.traps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-image.traps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-intersect.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-intersect.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-intersect.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-intersect.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-nesting.ps.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-nesting.ps.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-nesting.ps.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-nesting.ps.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-operator.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-operator.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-operator.image16.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-operator.image16.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-polygons.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-polygons.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-push-group.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-push-group.argb32.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-push-group.quartz.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-push-group.quartz.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-push-group.rgb24.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-push-group.rgb24.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.traps.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-rectilinear.traps.ref.png -------------------------------------------------------------------------------- /io2d/src/3rd-party/cairo/test/reference/clip-shape.base.argb32.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristianadam/io2d/HEAD/io2d/src/3rd-party/cairo/test/reference/clip-shape.base.argb32.ref.png --------------------------------------------------------------------------------