cairo/test/reference
Søren Sandmann Pedersen 98fef3cef2 _cairo_color_double_to_short(): Use standard rounding algorithm
The _cairo_color_double_to_short() function converts a double
precision floating point value in the range of [0.0, 1.0] to a
uint16_t integer by dividing the [0.0, 1.0] range into 65536
equal-sized intervals and then associating each interval with an
integer.

Under the assumption that an integer i corresponds to the real value i
/ 65535.0 this algorithm introduces more error than necessary as can
be seen from the following picture showing the analogous
transformation for two-bit integers:

    +-----------+-----------+-----------+-----------+
   0b00         |  0b01     |      0b10 |          0b11
    +-----------+-----------+-----------+-----------+

which shows that some floating point values are not converted to the
integer that would minimize the error in value that that integer
corresponds to.

Instead, this patch uses standard rounding, which makes the diagram
look like this:

    +-------+---------------+---------------+-------+
   0b00     |      0b01     |      0b10     |      0b11
    +-------+---------------+---------------+-------+

It's clear that if the values corresponding to the given integers are
fixed, then it's not possible to decrease the resulting error by
moving any of the interval boundaries.

See this thread for more information:

    http://lists.freedesktop.org/archives/cairo/2013-October/024691.html

Reference images updated:

  pthread-similar.ref.png
  record-paint-alpha.ref.png
  record90-paint-alpha.argb32.ref
  record90-paint-alpha.rgb24.ref.png
  xcb-huge-image-shm.ref.png
  xcb-huge-subimage.ref.png

All of these have only one-step differences to the old images.
2013-10-22 14:27:43 -04:00
..
a1-bug.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-bug.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-bug.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-bug.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
a1-bug.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
a1-bug.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-bug.ref.png mono: Always bias initial edge advancement 2012-03-01 14:41:58 +00:00
a1-bug.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
a1-bug.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
a1-clip-fill-equal.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-fill-equal.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-fill-equal.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-fill-rule.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-fill-rule.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-fill-rule.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-fill-rule.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-fill.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-fill.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-fill.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-paint.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-paint.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-paint.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-stroke.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-stroke.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-clip-stroke.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-fill.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
a1-fill.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
a1-fill.ref.png test: Add a1-fill 2011-09-16 16:25:45 +01:00
a1-image-sample.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-image-sample.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-image-sample.gl.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-image-sample.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-line-width.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-line-width.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-line-width.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-line-width.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-line-width.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-mask-sample.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-mask-sample.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-mask-sample.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-mask.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-mask.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-mask.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-rasterisation-rectangles.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-rasterisation-rectangles.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-rasterisation-rectangles.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-rasterisation-rectangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-rasterisation-triangles.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-rasterisation-triangles.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-rasterisation-triangles.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-rasterisation-triangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-rectilinear-grid.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-rectilinear-grid.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-rectilinear-grid.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-sample.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-sample.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-sample.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-tiger.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-tiger.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-tiger.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
a1-tiger.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
a1-tiger.ref.png test: reference ref images after tweaking polygon clipping 2011-12-06 14:56:49 +00:00
a1-tiger.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
a1-tiger.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
a1-traps-sample.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-traps-sample.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-traps-sample.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a1-traps-sample.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a8-clear.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
a8-clear.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a8-clear.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a8-clear.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a8-clear.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
a8-clear.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
a8-clear.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
a8-mask.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a8-mask.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
a8-mask.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
aliasing.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
aliasing.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
aliasing.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
aliasing.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
aliasing.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
aliasing.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
aliasing.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
aliasing.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
alpha-similar.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
alpha-similar.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
alpha-similar.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
alpha-similar.gl.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
alpha-similar.gl.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
alpha-similar.pdf.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
alpha-similar.pdf.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
alpha-similar.ps.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
alpha-similar.ps.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
alpha-similar.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
alpha-similar.svg.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
alpha-similar.svg.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
api-special-cases.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
api-special-cases.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
api-special-cases.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
arc-direction.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
arc-direction.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
arc-direction.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
arc-direction.ps.ref.png test: Add arc-direction 2012-01-11 12:43:43 +00:00
arc-direction.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
arc-direction.traps.ref.png test: Add arc-direction 2012-01-11 12:43:43 +00:00
arc-infinite-loop.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
arc-infinite-loop.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
arc-infinite-loop.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
arc-looping-dash.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
arc-looping-dash.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
arc-looping-dash.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
arc-looping-dash.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
arc-looping-dash.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
arc-looping-dash.ref.png pen: First check whether the in/out edges lie within the single pen vertex 2012-10-31 09:27:52 +00:00
arc-looping-dash.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
arc-looping-dash.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
big-empty-box.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-empty-box.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-empty-box.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-empty-box.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-empty-triangle.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-empty-triangle.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-empty-triangle.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-empty-triangle.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-line.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
big-line.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-line.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-line.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-line.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-line.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-line.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
big-line.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
big-line.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
big-little-box.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-little-box.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-little-box.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-little-box.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-little-triangle.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
big-little-triangle.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-little-triangle.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-little-triangle.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
big-little-triangle.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
big-little-triangle.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
big-trap.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-trap.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
big-trap.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
big-trap.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
big-trap.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
big-trap.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
bilevel-image.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bilevel-image.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bilevel-image.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bilevel-xlib-fallback.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
bilevel-xlib-window.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
bilevel-xlib.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
bilevel-xlib.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
bitmap-font.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
bitmap-font.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bitmap-font.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bitmap-font.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
bug-40410.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
bug-40410.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-40410.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-40410.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
bug-40410.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
bug-40410.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
bug-51910.ref.png test: Add example from bug-51910 2012-07-09 21:57:03 +01:00
bug-bo-collins.ref.png test: Exercise rectangular bo bug 2012-05-23 11:50:34 +01:00
bug-bo-rectangular.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-bo-rectangular.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-bo-rectangular.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-bo-rectangular.ps.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-bo-rectangular.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-bo-ricotz.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
bug-bo-ricotz.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
bug-bo-ricotz.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
bug-bo-ricotz.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
bug-bo-ricotz.traps.ref.png test: Add bug-bo-ricotz 2011-09-16 13:48:09 +01:00
bug-extents.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
bug-extents.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-extents.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-extents.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-extents.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-extents.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-extents.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
bug-extents.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
bug-extents.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
bug-seams.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-seams.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-seams.image.xfail.png test: Add a few reference images found lurking on my machine 2013-07-04 09:40:37 +01:00
bug-seams.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
bug-seams.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
bug-seams.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-seams.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
bug-seams.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
bug-seams.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
bug-source-cu.argb32.ref.png test: Add test case for tracking source operator extents 2012-03-29 00:51:46 +01:00
bug-source-cu.rgb24.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
bug-source-cu.traps.argb32.ref.png test: Add test case for tracking source operator extents 2012-03-29 00:51:46 +01:00
bug-source-cu.traps.rgb24.ref.png test: Add test case for tracking source operator extents 2012-03-29 00:51:46 +01:00
bug-spline.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-1.ref.png test: Expand testing of caps for fine strokes 2013-06-04 11:52:26 +01:00
caps-1.traps.ref.png test: Expand testing of caps for fine strokes 2013-06-04 11:52:26 +01:00
caps-2.ref.png test: Expand testing of caps for fine strokes 2013-06-04 11:52:26 +01:00
caps-2.traps.ref.png test: Expand testing of caps for fine strokes 2013-06-04 11:52:26 +01:00
caps-05.ref.png test: Expand testing of caps for fine strokes 2013-06-04 11:52:26 +01:00
caps-05.traps.ref.png test: Expand testing of caps for fine strokes 2013-06-04 11:52:26 +01:00
caps-joins-1.ref.png test: Extend testing of joins for fine lines 2013-06-04 11:52:30 +01:00
caps-joins-1.traps.ref.png test: Extend testing of joins for fine lines 2013-06-04 11:52:30 +01:00
caps-joins-2.ref.png test: Extend testing of joins for fine lines 2013-06-04 11:52:30 +01:00
caps-joins-2.traps.ref.png test: Extend testing of joins for fine lines 2013-06-04 11:52:30 +01:00
caps-joins-05.ref.png test: Extend testing of joins for fine lines 2013-06-04 11:52:30 +01:00
caps-joins-05.traps.ref.png test: Extend testing of joins for fine lines 2013-06-04 11:52:30 +01:00
caps-joins-alpha.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
caps-joins-alpha.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
caps-joins-alpha.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
caps-joins-alpha.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
caps-joins-alpha.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-joins-alpha.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-joins-alpha.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-joins-curve.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
caps-joins-curve.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
caps-joins-curve.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
caps-joins-curve.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
caps-joins-curve.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
caps-joins-curve.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-joins-curve.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-joins-curve.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-joins.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
caps-joins.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-joins.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-joins.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
caps-joins.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
caps-joins.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
caps-joins.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-joins.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-sub-paths.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
caps-sub-paths.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-sub-paths.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-sub-paths.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
caps-sub-paths.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
caps-sub-paths.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
caps-sub-paths.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-sub-paths.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps-tails-curve.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
caps-tails-curve.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
caps-tails-curve.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
caps-tails-curve.ref.png pen: First check whether the in/out edges lie within the single pen vertex 2012-10-31 09:27:52 +00:00
caps-tails-curve.traps.argb32.ref.png Fix caps-tails-curve reference images 2013-07-04 21:57:12 +02:00
caps-tails-curve.traps.rgb24.ref.png Fix caps-tails-curve reference images 2013-07-04 21:57:12 +02:00
caps-tails-curve.xcb.ref.png Fix caps-tails-curve reference images 2013-07-04 21:57:12 +02:00
caps.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
caps.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
caps.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
caps.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
caps.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
caps.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
checkerboard.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
checkerboard.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
checkerboard.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clear-source.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clear-source.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
clear-source.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
clear-source.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clear-source.pdf.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clear-source.ps.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clear-source.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clear-source.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
clear-source.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
clear.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clear.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clear.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clear.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clear.ps.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clear.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clear.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clear.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clear.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clear.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clear.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clear.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-all.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-all.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-all.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-complex-bug61492.ref.png Add new test for bug 61592 2013-07-04 21:57:12 +02:00
clip-complex-shape-eo-aa.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-complex-shape-eo-aa.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-complex-shape-eo-aa.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-complex-shape-eo-mono.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-complex-shape-eo-mono.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-complex-shape-eo-mono.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-contexts.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-contexts.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-contexts.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-device-offset.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-device-offset.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-device-offset.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-device-offset.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-disjoint-hatching.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-disjoint-hatching.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-disjoint-hatching.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-disjoint-hatching.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-disjoint-hatching.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-disjoint-hatching.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-disjoint-hatching.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-disjoint-hatching.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-disjoint-quad.ref.png test: Refresh reference image for clip-disjoint-quad 2012-09-27 11:41:58 +01:00
clip-disjoint-quad.traps.ref.png test: Refresh reference image for clip-disjoint-quad 2012-09-27 11:41:58 +01:00
clip-disjoint.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-disjoint.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-disjoint.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-disjoint.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-disjoint.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-disjoint.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-disjoint.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-disjoint.ref.png spans+image: Fix clipping with polygons and spans 2012-02-28 22:27:18 +00:00
clip-disjoint.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-disjoint.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-empty-group.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-empty-group.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-empty-group.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-empty-save.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-empty-save.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-empty-save.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-empty.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-empty.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-empty.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-eo-unbounded.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-fill-eo-unbounded.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-fill-eo-unbounded.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-fill-eo-unbounded.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-eo-unbounded.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-fill-eo-unbounded.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-fill-eo-unbounded.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-eo-unbounded.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-eo-unbounded.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-fill-eo-unbounded.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-eo-unbounded.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-fill-eo-unbounded.traps.rgb24.ref.png test: Refresh reference images for spans/traps 2011-09-16 17:44:33 +01:00
clip-fill-eo-unbounded.xlib-fallback.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-no-op.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-no-op.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-no-op.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-no-op.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-nz-unbounded.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-fill-nz-unbounded.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-fill-nz-unbounded.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-fill-nz-unbounded.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-nz-unbounded.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-fill-nz-unbounded.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-fill-nz-unbounded.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-nz-unbounded.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-nz-unbounded.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-fill-nz-unbounded.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-nz-unbounded.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-fill-nz-unbounded.traps.rgb24.ref.png test: Add line-width-large-overlap 2011-09-29 00:24:18 +01:00
clip-fill-nz-unbounded.xlib-fallback.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-rule-pixel-aligned.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
clip-fill-rule-pixel-aligned.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-rule-pixel-aligned.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-rule-pixel-aligned.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-fill-rule.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-fill-rule.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-fill-rule.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-fill-rule.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-rule.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-rule.ps.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-rule.ps.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-rule.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-rule.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-fill-rule.test-paginated.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill-rule.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-fill-rule.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-fill.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-fill.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-fill.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-fill.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-fill.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-fill.ps.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-fill.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-fill.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-fill.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-fill.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-group-shapes-aligned-rectangles.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-group-shapes-aligned-rectangles.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-group-shapes-aligned-rectangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-group-shapes-circles.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-group-shapes-circles.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-group-shapes-circles.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-group-shapes-circles.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-group-shapes-circles.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-group-shapes-circles.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-group-shapes-circles.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-group-shapes-circles.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-group-shapes-circles.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-group-shapes-circles.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-group-shapes-unaligned-rectangles.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-group-shapes-unaligned-rectangles.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-group-shapes-unaligned-rectangles.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-group-shapes-unaligned-rectangles.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-group-shapes-unaligned-rectangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-group-shapes-unaligned-rectangles.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-group-shapes-unaligned-rectangles.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-image.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-image.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-image.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-image.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-image.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-image.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-image.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-image.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-image.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-image.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-intersect.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-intersect.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-intersect.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-intersect.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-intersect.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-intersect.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-mixed-antialias.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-mixed-antialias.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-mixed-antialias.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-mixed-antialias.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-mixed-antialias.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-mixed-antialias.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-nesting.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-nesting.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-nesting.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-nesting.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-nesting.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-nesting.ps.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-nesting.ps.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-nesting.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-nesting.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-nesting.rgb24.ref.png tests: Update reference images after adjustments to polygon line clipping 2013-02-10 13:13:31 +00:00
clip-nesting.test-paginated.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-nesting.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-nesting.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-operator.argb32.ref.png spans: Only fallback for a clipmask if unbounded 2012-05-11 21:53:55 +01:00
clip-operator.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
clip-operator.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-operator.gl.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-operator.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-operator.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-operator.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-operator.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-operator.pdf.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-operator.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-operator.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-operator.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-operator.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-operator.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-operator.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-operator.rgb24.ref.png spans: Only fallback for a clipmask if unbounded 2012-05-11 21:53:55 +01:00
clip-operator.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-operator.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-operator.test-paginated.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-operator.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
clip-operator.traps.rgb24.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
clip-operator.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-polygons.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-polygons.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-polygons.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-polygons.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-polygons.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-polygons.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-polygons.traps.ref.png test: Add clip-polygons 2011-10-12 15:10:34 +01:00
clip-push-group.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-push-group.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-push-group.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-push-group.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-push-group.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-push-group.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-push-group.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-push-group.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-push-group.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-push-group.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-push-group.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-rectilinear.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-rectilinear.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-rectilinear.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-rectilinear.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-rectilinear.ref.png test: Add clip-rectilinear 2011-09-30 16:31:06 +01:00
clip-rectilinear.traps.ref.png test: Add clip-rectilinear 2011-09-30 16:31:06 +01:00
clip-rotate-image-surface-paint.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-rotate-image-surface-paint.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-rotate-image-surface-paint.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-shape.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-shape.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-shape.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-shape.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-shape.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-shape.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-shape.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-shape.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-shape.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-shape.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-shape.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-shape.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-stroke-no-op.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-stroke-no-op.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-stroke-no-op.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-stroke-no-op.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-stroke-unbounded.argb32.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
clip-stroke-unbounded.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-stroke-unbounded.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-stroke-unbounded.image16.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-stroke-unbounded.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-stroke-unbounded.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-stroke-unbounded.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-stroke-unbounded.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-stroke-unbounded.rgb24.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
clip-stroke-unbounded.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-stroke-unbounded.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-stroke-unbounded.traps.rgb24.ref.png test: Refresh reference images for spans/traps 2011-09-16 17:44:33 +01:00
clip-stroke-unbounded.xlib-fallback.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-stroke.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-stroke.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-stroke.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-stroke.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-stroke.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-stroke.ps.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-stroke.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-stroke.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
clip-stroke.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-stroke.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-stroke.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-text.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-text.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-text.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-text.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-text.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-text.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-text.ps.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-text.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-text.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-text.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-text.traps.argb32.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
clip-text.traps.rgb24.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
clip-twice-rectangle.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-twice-rectangle.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-twice-rectangle.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-twice.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-twice.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-twice.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clip-twice.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-twice.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-twice.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clip-twice.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-twice.ps.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-twice.ps.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-twice.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-twice.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-twice.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-twice.test-paginated.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-twice.test-paginated.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-twice.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-twice.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clip-unbounded.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
clip-unbounded.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-unbounded.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-unbounded.pdf.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-unbounded.pdf.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-unbounded.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-unbounded.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clip-xlib-fallback.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-xlib-window.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-xlib.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clip-xlib.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clipped-group.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clipped-group.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clipped-group.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
clipped-group.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clipped-group.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clipped-group.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
clipped-group.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clipped-group.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clipped-group.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clipped-group.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clipped-group.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
clipped-group.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clipped-group.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clipped-group.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
clipped-group.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clipped-surface.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clipped-surface.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clipped-surface.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clipped-surface.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
clipped-trapezoids.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
close-path-current-point.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
close-path-current-point.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
close-path-current-point.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
close-path-current-point.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
close-path-current-point.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
close-path-current-point.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
close-path-current-point.ref.png stroke: Don't drop clockwise==0 lines 2012-05-14 18:11:28 +01:00
close-path-current-point.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
close-path-current-point.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
close-path.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
close-path.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
close-path.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
close-path.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
close-path.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
close-path.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
close-path.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
close-path.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
composite-integer-translate-over-repeat.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-over-repeat.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-over-repeat.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-over-repeat.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-over-repeat.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-over.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-over.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-over.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-over.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-over.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-over.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-source.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-source.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-source.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-source.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-source.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
composite-integer-translate-source.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
copy-disjoint.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
copy-disjoint.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
copy-disjoint.ref.png test: Exercise copy/filling unsorted rectangles 2011-12-06 19:02:45 +00:00
copy-path.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
copy-path.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
copy-path.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
copy-path.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
copy-path.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
copy-path.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
copy-path.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
copy-path.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
coverage-column-triangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
coverage-column-triangles.xlib.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
coverage-intersecting-quads.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
coverage-intersecting-quads.xlib.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
coverage-intersecting-triangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
coverage-intersecting-triangles.xlib.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
coverage-rectangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
coverage-rectangles.xlib.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
coverage-row-triangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
coverage-row-triangles.xlib.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
coverage-triangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
coverage-triangles.xlib.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
create-from-png-stream.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
create-from-png-stream.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
create-from-png-stream.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
create-from-png.alpha.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
create-from-png.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
create-from-png.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
create-from-png.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
create-from-png.gray-alpha.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
create-from-png.gray.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
create-from-png.indexed-alpha.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
create-from-png.indexed.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
create-from-png.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
create-from-png.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
create-from-png.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
create-from-png.traps.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
create-from-png.traps.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
culled-glyphs.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
culled-glyphs.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
culled-glyphs.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
culled-glyphs.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
culled-glyphs.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
culled-glyphs.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
culled-glyphs.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
curve-to-as-line-to.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
curve-to-as-line-to.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
curve-to-as-line-to.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
curve-to-as-line-to.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
curve-to-as-line-to.ps.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
curve-to-as-line-to.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
curve-to-as-line-to.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
curve-to-as-line-to.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-caps-joins.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-caps-joins.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-caps-joins.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-caps-joins.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
dash-caps-joins.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
dash-caps-joins.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-caps-joins.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-caps-joins.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-caps-joins.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-caps-joins.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-curve.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-curve.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
dash-curve.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
dash-curve.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-curve.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-curve.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-curve.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-curve.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-curve.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-infinite-loop.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
dash-infinite-loop.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-infinite-loop.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-infinite-loop.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-infinite-loop.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
dash-infinite-loop.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-infinite-loop.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-no-dash.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-no-dash.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-no-dash.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-offset-negative.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
dash-offset-negative.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-offset-negative.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-offset-negative.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-offset-negative.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
dash-offset-negative.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
dash-offset-negative.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
dash-offset.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-offset.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-offset.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-scale.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-scale.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
dash-scale.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
dash-scale.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-scale.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-scale.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-scale.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-scale.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-state.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
dash-state.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-state.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-state.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-state.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-state.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-state.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-state.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
dash-state.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-state.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-zero-length.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
dash-zero-length.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-zero-length.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-zero-length.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
dash-zero-length.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-zero-length.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-zero-length.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-zero-length.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
dash-zero-length.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-zero-length.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
dash-zero-length.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-arc.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-arc.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-arc.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-arc.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
degenerate-arc.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
degenerate-arc.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-arc.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-arc.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-arc.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-arc.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-arc.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-arcs.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-arcs.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-arcs.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-arcs.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-curve-to.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-curve-to.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-curve-to.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-curve-to.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
degenerate-curve-to.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
degenerate-curve-to.ps.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-curve-to.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-curve-to.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-curve-to.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-curve-to.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-dash.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-dash.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-dash.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
degenerate-dash.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
degenerate-dash.ps.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-dash.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-dash.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-dash.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-dash.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-linear-gradient.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
degenerate-linear-gradient.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-linear-gradient.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-linear-gradient.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
degenerate-path.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-path.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-path.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-path.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
degenerate-path.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
degenerate-path.ps.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-path.ps.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-path.quartz.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-path.quartz.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-path.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-path.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-path.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-pen.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
degenerate-pen.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-pen.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-pen.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-pen.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-pen.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
degenerate-pen.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
degenerate-pen.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
degenerate-radial-gradient.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-radial-gradient.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-radial-gradient.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-rel-curve-to.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-rel-curve-to.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-rel-curve-to.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-rel-curve-to.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
degenerate-rel-curve-to.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
degenerate-rel-curve-to.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-rel-curve-to.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
degenerate-rel-curve-to.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-rel-curve-to.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-rel-curve-to.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
degenerate-solid-dash.ref.png test: Update degenerate-solid-dash reference 2012-04-29 15:55:16 +01:00
device-offset-fractional.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset-fractional.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset-fractional.gl.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset-fractional.pdf.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset-fractional.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset-fractional.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset-fractional.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset-positive.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
device-offset-positive.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset-positive.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset-positive.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
device-offset-scale.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset-scale.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset-scale.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset-scale.svg.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
device-offset.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
device-offset.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
drunkard-tails.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
drunkard-tails.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
drunkard-tails.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
drunkard-tails.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
drunkard-tails.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
drunkard-tails.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
drunkard-tails.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
drunkard-tails.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
extend-pad-border.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
extend-pad-border.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad-border.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad-border.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad-border.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad-border.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad-border.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad-border.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
extend-pad-border.svg.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad-similar.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad-similar.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad-similar.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad-similar.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad-similar.svg.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-pad.svg.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-reflect-similar.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-reflect-similar.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-reflect-similar.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-reflect-similar.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-reflect-similar.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-reflect-similar.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-reflect.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-reflect.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-reflect.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-reflect.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-reflect.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-reflect.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-repeat-similar.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-repeat-similar.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-repeat-similar.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-repeat-similar.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-repeat-similar.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-repeat-similar.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-repeat.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-repeat.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-repeat.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-repeat.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-repeat.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extend-repeat.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-alpha-mask.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-alpha-mask.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-alpha-mask.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-alpha-mask.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-alpha.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-alpha.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-alpha.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-alpha.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-alpha.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-alpha.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-alpha.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-alpha.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-alpha.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-mask.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-mask.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-mask.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-mask.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-solid-alpha.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-solid-alpha.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-solid-alpha.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-solid-alpha.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-solid-alpha.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-solid.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
extended-blend-solid.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-solid.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-solid.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend-solid.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
extended-blend.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
extended-blend.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fallback-resolution.ppi72x72.ref.png test: Refresh the fallback-resolution reference images 2012-03-08 15:32:39 +00:00
fallback-resolution.ppi72x144.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fallback-resolution.ppi72x144.ref.png test: Refresh the fallback-resolution reference images 2012-03-08 15:32:39 +00:00
fallback-resolution.ppi72x288.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fallback-resolution.ppi72x288.ref.png test: Refresh the fallback-resolution reference images 2012-03-08 15:32:39 +00:00
fallback-resolution.ppi72x576.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fallback-resolution.ppi72x576.ref.png test: Refresh the fallback-resolution reference images 2012-03-08 15:32:39 +00:00
fallback-resolution.ppi144x72.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fallback-resolution.ppi144x72.ref.png test: Refresh the fallback-resolution reference images 2012-03-08 15:32:39 +00:00
fallback-resolution.ppi144x144.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fallback-resolution.ppi144x144.ref.png test: Refresh the fallback-resolution reference images 2012-03-08 15:32:39 +00:00
fallback-resolution.ppi288x72.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fallback-resolution.ppi288x72.ref.png test: Refresh the fallback-resolution reference images 2012-03-08 15:32:39 +00:00
fallback-resolution.ppi288x288.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fallback-resolution.ppi288x288.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fallback-resolution.ppi288x288.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fallback-resolution.ppi576x72.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fallback-resolution.ppi576x72.ref.png test: Refresh the fallback-resolution reference images 2012-03-08 15:32:39 +00:00
fallback-resolution.ppi576x576.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fallback-resolution.ppi576x576.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fallback-resolution.ppi576x576.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fallback.argb32.ref.png image: Perform the simple solid-fill spans inplace 2012-03-05 17:03:53 +00:00
fallback.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
fallback.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
fallback.image16.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fallback.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
fallback.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
fallback.rgb24.ref.png image: Perform the simple solid-fill spans inplace 2012-03-05 17:03:53 +00:00
fallback.traps.argb32.ref.png stroke: Don't drop clockwise==0 lines 2012-05-14 18:11:28 +01:00
fallback.traps.rgb24.ref.png stroke: Don't drop clockwise==0 lines 2012-05-14 18:11:28 +01:00
fill-alpha-pattern.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-alpha-pattern.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-alpha-pattern.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-alpha-pattern.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-alpha-pattern.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-alpha-pattern.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-alpha-pattern.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-alpha-pattern.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-alpha-pattern.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-alpha-pattern.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-alpha.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-alpha.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-alpha.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-alpha.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-alpha.ps.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-alpha.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-alpha.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-alpha.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-alpha.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-and-stroke-alpha-add.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-and-stroke-alpha-add.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke-alpha-add.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke-alpha-add.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke-alpha-add.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke-alpha-add.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-and-stroke-alpha-add.svg12.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke-alpha-add.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-and-stroke-alpha-add.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-and-stroke-alpha.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-and-stroke-alpha.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke-alpha.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke-alpha.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke-alpha.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-and-stroke-alpha.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-and-stroke-alpha.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-and-stroke.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-and-stroke.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke.ps.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke.ps.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-and-stroke.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-and-stroke.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-and-stroke.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-degenerate-sort-order.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-degenerate-sort-order.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-degenerate-sort-order.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-degenerate-sort-order.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-degenerate-sort-order.ps.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-degenerate-sort-order.ps.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-degenerate-sort-order.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-degenerate-sort-order.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-degenerate-sort-order.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-degenerate-sort-order.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-degenerate-sort-order.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-disjoint.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
fill-disjoint.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
fill-disjoint.ref.png test: Exercise copy/filling unsorted rectangles 2011-12-06 19:02:45 +00:00
fill-empty.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-empty.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-empty.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-empty.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-empty.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-image.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-image.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
fill-image.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
fill-image.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-image.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-image.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-image.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-image.traps.argb32.ref.png test: Update traps for changes in reference font 2012-02-22 10:11:16 +00:00
fill-image.traps.rgb24.ref.png test: Update traps for changes in reference font 2012-02-22 10:11:16 +00:00
fill-missed-stop.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-missed-stop.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-missed-stop.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-missed-stop.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-missed-stop.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-missed-stop.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-missed-stop.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-missed-stop.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-missed-stop.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-missed-stop.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-missed-stop.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-rule.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-rule.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-rule.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-rule.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-rule.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-rule.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-rule.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-rule.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-rule.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-rule.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
fill-rule.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-rule.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-rule.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
fill-xlib-fallback.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-xlib-window.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-xlib.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
fill-xlib.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
filter-bilinear-extents.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
filter-bilinear-extents.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-bilinear-extents.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-bilinear-extents.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-bilinear-extents.pdf.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-bilinear-extents.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-bilinear-extents.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-bilinear-extents.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-bilinear-extents.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
filter-nearest-offset.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-offset.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-offset.gl.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-offset.pdf.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-offset.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-offset.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-offset.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-offset.svg.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-transformed.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-transformed.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-transformed.gl.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-transformed.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-transformed.pdf.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-transformed.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-transformed.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
filter-nearest-transformed.svg.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.argb32.ref.png spans+image: Fix clipping with polygons and spans 2012-02-28 22:27:18 +00:00
finer-grained-fallbacks.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.gl.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
finer-grained-fallbacks.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
finer-grained-fallbacks.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.rgb24.ref.png spans+image: Fix clipping with polygons and spans 2012-02-28 22:27:18 +00:00
finer-grained-fallbacks.svg12.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.svg12.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
finer-grained-fallbacks.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
finer-grained-fallbacks.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
finer-grained-fallbacks.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
font-matrix-translation.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
font-matrix-translation.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
font-matrix-translation.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
font-matrix-translation.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
font-matrix-translation.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
font-matrix-translation.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
font-matrix-translation.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
font-matrix-translation.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
font-matrix-translation.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
font-matrix-translation.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
font-matrix-translation.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
font-matrix-translation.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
ft-show-glyphs-positioning.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
ft-show-glyphs-positioning.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
ft-show-glyphs-positioning.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
ft-show-glyphs-positioning.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-show-glyphs-positioning.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-show-glyphs-positioning.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-show-glyphs-positioning.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-show-glyphs-positioning.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
ft-show-glyphs-positioning.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-show-glyphs-positioning.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
ft-show-glyphs-table.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
ft-show-glyphs-table.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
ft-show-glyphs-table.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
ft-show-glyphs-table.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-show-glyphs-table.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-show-glyphs-table.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-show-glyphs-table.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-show-glyphs-table.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
ft-show-glyphs-table.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-show-glyphs-table.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
ft-text-antialias-none.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-antialias-none.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-antialias-none.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-antialias-none.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-antialias-none.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type1.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
ft-text-vertical-layout-type1.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type1.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type1.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type1.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type1.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type1.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type1.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
ft-text-vertical-layout-type1.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type1.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
ft-text-vertical-layout-type1.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
ft-text-vertical-layout-type1.xfail.png test: Record the failure of recent freetype libraries for type1 vertical layout 2011-09-15 17:02:12 +01:00
ft-text-vertical-layout-type3.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type3.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type3.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type3.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
ft-text-vertical-layout-type3.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
ft-text-vertical-layout-type3.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type3.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type3.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type3.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
ft-text-vertical-layout-type3.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ft-text-vertical-layout-type3.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
ft-text-vertical-layout-type3.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
get-group-target.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
get-group-target.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
get-group-target.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gl-surface-source.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gl-surface-source.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
gl-surface-source.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
gl-surface-source.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gl-surface-source.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
glyph-cache-pressure.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
glyph-cache-pressure.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
glyph-cache-pressure.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
glyph-cache-pressure.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
glyph-cache-pressure.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
glyph-cache-pressure.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
glyph-cache-pressure.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
glyph-cache-pressure.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
glyph-cache-pressure.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
gradient-alpha.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
gradient-alpha.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-alpha.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-alpha.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-alpha.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-alpha.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-alpha.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-alpha.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-constant-alpha.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
gradient-constant-alpha.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-constant-alpha.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-constant-alpha.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-constant-alpha.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-constant-alpha.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-constant-alpha.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-zero-stops-mask.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-zero-stops-mask.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-zero-stops-mask.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-zero-stops-mask.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-zero-stops.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
gradient-zero-stops.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-zero-stops.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
gradient-zero-stops.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
group-clip.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-clip.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-clip.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-clip.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-paint.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-paint.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-paint.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-unaligned.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
group-unaligned.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-unaligned.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-unaligned.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-unaligned.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-unaligned.ps.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-unaligned.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-unaligned.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
group-unaligned.svg.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-unaligned.svg.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
group-unaligned.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
group-unaligned.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
group-unaligned.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
halo-transform.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
halo-transform.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
halo-transform.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
halo-transform.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
halo-transform.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
halo-transform.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
halo-transform.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
halo-transform.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
halo.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
halo.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
halo.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
halo.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
halo.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
halo.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
halo.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
halo.ref.png stroke: Don't drop clockwise==0 lines 2012-05-14 18:11:28 +01:00
halo.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
hatchings.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
hatchings.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
hatchings.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
hatchings.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
hatchings.ref.png image: Perform the simple solid-fill spans inplace 2012-03-05 17:03:53 +00:00
hatchings.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
hatchings.traps.rgb24.ref.png test: Refresh reference images for spans/traps 2011-09-16 17:44:33 +01:00
horizontal-clip.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
horizontal-clip.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
horizontal-clip.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
horizontal-clip.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
huge-linear.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
huge-linear.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
huge-linear.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
huge-linear.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
huge-linear.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
huge-linear.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
huge-linear.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
huge-linear.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
huge-radial.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
huge-radial.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
huge-radial.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
huge-radial.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
huge-radial.pdf.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
huge-radial.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
huge-radial.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
huge-radial.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-bug-710072-aligned.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-bug-710072-aligned.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-bug-710072-aligned.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-bug-710072-unaligned.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-bug-710072-unaligned.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-bug-710072-unaligned.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-bug-710072-unaligned.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
image-bug-710072-unaligned.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
image-bug-710072-unaligned.xlib-fallback.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
image-bug-710072-unaligned.xlib-window.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
image-surface-source.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-surface-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-surface-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-surface-source.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-surface-source.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-surface-source.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-surface-source.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-surface-source.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
image-surface-source.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
implicit-close.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
implicit-close.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
implicit-close.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
implicit-close.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
implicit-close.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
implicit-close.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
infinite-join.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
infinite-join.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
infinite-join.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
infinite-join.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
infinite-join.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
infinite-join.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
infinite-join.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
infinite-join.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
inverse-text.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
inverse-text.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
inverse-text.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
inverse-text.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
inverse-text.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
inverted-clip.base.xfail.png test: Exercise clip inversion imperfections 2012-04-29 12:40:10 +01:00
inverted-clip.traps.xfail.png test: Exercise clip inversion imperfections 2012-04-29 12:40:10 +01:00
inverted-clip.xfail.png test: Exercise clip inversion imperfections 2012-04-29 12:40:10 +01:00
joins-loop.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
joins-loop.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins-loop.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins-loop.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
joins-loop.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins-loop.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins-retrace.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins-retrace.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins-retrace.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
joins-retrace.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
joins-retrace.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins-retrace.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins-retrace.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins-star.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
joins-star.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins-star.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins-star.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
joins-star.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins-star.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
joins.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
joins.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
joins.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
joins.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
joins.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
joins.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
large-clip.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
large-clip.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
large-clip.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
large-font.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
large-font.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
large-font.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
large-font.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
large-source-roi.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
large-source-roi.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
large-source-roi.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
large-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
large-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
large-source.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
large-twin-antialias-mixed.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
large-twin-antialias-mixed.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
large-twin-antialias-mixed.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
large-twin-antialias-mixed.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
large-twin-antialias-mixed.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
large-twin-antialias-mixed.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
large-twin-antialias-mixed.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
leaky-dash.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dash.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dash.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dash.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dash.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dash.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dash.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dash.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dashed-rectangle.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dashed-rectangle.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dashed-rectangle.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dashed-rectangle.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dashed-rectangle.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dashed-rectangle.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dashed-rectangle.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dashed-rectangle.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
leaky-dashed-rectangle.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
leaky-dashed-stroke.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
leaky-dashed-stroke.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dashed-stroke.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dashed-stroke.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dashed-stroke.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dashed-stroke.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-dashed-stroke.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
leaky-dashed-stroke.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
leaky-dashed-stroke.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
leaky-polygon.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
leaky-polygon.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-polygon.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-polygon.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-polygon.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
leaky-polygon.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
leaky-polygon.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
leaky-polygon.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
line-width-large-overlap-dashed.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-large-overlap-dashed.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-large-overlap-dashed.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-large-overlap-dashed.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-large-overlap-dashed.ref.png test: Update degenerate-solid-dash reference 2012-04-29 15:55:16 +01:00
line-width-large-overlap-dashed.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
line-width-large-overlap-dashed.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
line-width-large-overlap-flipped.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-large-overlap-flipped.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-large-overlap-flipped.ref.png test: Add line-width-large-overlap 2011-09-29 00:24:18 +01:00
line-width-large-overlap-flopped.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-large-overlap-flopped.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-large-overlap-flopped.ref.png test: Add line-width-large-overlap 2011-09-29 00:24:18 +01:00
line-width-large-overlap-offset.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-large-overlap-offset.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-large-overlap-offset.ref.png test: Add line-width-large-overlap 2011-09-29 00:24:18 +01:00
line-width-large-overlap-rotated.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
line-width-large-overlap-rotated.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-large-overlap-rotated.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-large-overlap-rotated.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
line-width-large-overlap-rotated.traps.ref.png test: Add line-width-large-overlap 2011-09-29 00:24:18 +01:00
line-width-large-overlap.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-large-overlap.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-large-overlap.ref.png test: Add line-width-large-overlap 2011-09-29 00:24:18 +01:00
line-width-overlap-dashed.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap-dashed.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap-dashed.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-overlap-dashed.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
line-width-overlap-dashed.ref.png test: Update degenerate-solid-dash reference 2012-04-29 15:55:16 +01:00
line-width-overlap-dashed.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
line-width-overlap-dashed.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
line-width-overlap-flipped.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap-flipped.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap-flipped.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap-flopped.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap-flopped.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap-flopped.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap-offset.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap-offset.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap-offset.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap-offset.traps.ref.png test: Add line-width-large-overlap 2011-09-29 00:24:18 +01:00
line-width-overlap-rotated.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
line-width-overlap-rotated.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap-rotated.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap-rotated.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
line-width-overlap-rotated.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
line-width-overlap-rotated.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
line-width-overlap.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-overlap.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-scale.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
line-width-scale.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-scale.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-scale.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-scale.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-scale.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-scale.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-scale.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
line-width-scale.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
line-width-scale.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
line-width-tolerance.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
line-width-tolerance.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-tolerance.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width-tolerance.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
line-width-tolerance.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
line-width-tolerance.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
line-width.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
line-width.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
line-width.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
line-width.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
line-width.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
linear-gradient-extend.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-extend.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-extend.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-large.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-large.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-large.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-large.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-one-stop.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-one-stop.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-one-stop.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-one-stop.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-reflect.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
linear-gradient-reflect.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-reflect.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-reflect.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-reflect.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-reflect.pdf.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-reflect.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-reflect.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-reflect.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
linear-gradient-subset.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
linear-gradient-subset.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-subset.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-subset.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-subset.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-subset.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient-subset.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
linear-gradient-subset.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
linear-gradient-subset.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
linear-gradient.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
linear-gradient.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-gradient.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
linear-gradient.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
linear-gradient.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
linear-step-function.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-step-function.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-step-function.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
linear-step-function.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
linear-step-function.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
linear-step-function.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
linear-step-function.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-uniform.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-uniform.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-uniform.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
linear-uniform.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
long-dashed-lines.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
long-dashed-lines.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
long-dashed-lines.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
long-dashed-lines.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
long-dashed-lines.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
long-dashed-lines.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
long-dashed-lines.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
long-dashed-lines.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
long-dashed-lines.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
long-dashed-lines.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
long-lines.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
long-lines.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
long-lines.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
long-lines.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
long-lines.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
long-lines.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
map-all-to-image.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
map-all-to-image.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
map-all-to-image.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
map-all-to-xlib-fallback.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
map-all-to-xlib-window.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
map-all-to-xlib.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
map-all-to-xlib.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
map-bit-to-image.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
map-bit-to-image.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
map-bit-to-image.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
map-bit-to-xlib-fallback.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
map-bit-to-xlib-window.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
map-bit-to-xlib.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
map-bit-to-xlib.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
map-to-image-fill.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
map-to-image-fill.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
map-to-image-fill.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-alpha.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
mask-alpha.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-alpha.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-alpha.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-alpha.ps.ref.png test: add mask-alpha ps ref 2011-09-16 21:37:58 +09:30
mask-alpha.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-alpha.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
mask-alpha.svg.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-alpha.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
mask-alpha.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
mask-ctm.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
mask-ctm.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-ctm.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-ctm.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
mask-glyphs.gl.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-glyphs.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-glyphs.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-glyphs.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-glyphs.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-surface-ctm.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
mask-surface-ctm.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-surface-ctm.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-surface-ctm.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
mask-transformed-image.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
mask-transformed-image.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-transformed-image.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-transformed-image.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-transformed-image.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-transformed-image.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-transformed-image.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
mask-transformed-similar.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
mask-transformed-similar.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-transformed-similar.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-transformed-similar.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-transformed-similar.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-transformed-similar.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-transformed-similar.recording.ref.png test: Add a couple of reference images for the recording surface 2012-02-24 13:56:41 +00:00
mask-transformed-similar.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
mask-transformed-similar.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask-transformed-xlib-fallback.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
mask-transformed-xlib-window.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
mask-transformed-xlib.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
mask-transformed-xlib.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
mask.argb32.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
mask.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
mask.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
mask.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask.pdf.argb32.ref.png test: refresh pdf mask ref images 2011-09-18 13:32:32 +09:30
mask.pdf.rgb24.ref.png test: refresh pdf mask ref images 2011-09-18 13:32:32 +09:30
mask.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask.rgb24.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
mask.svg.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask.svg.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mask.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
mask.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
mesh-pattern-accuracy.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-accuracy.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-accuracy.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-accuracy.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-conical.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-conical.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-conical.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-conical.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-control-points.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-control-points.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-control-points.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-control-points.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-fold.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-fold.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-fold.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-fold.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-overlap.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-overlap.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-overlap.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-overlap.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-transformed.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-transformed.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-transformed.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern-transformed.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mesh-pattern.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
mime-data.base.argb32.ref.png test: update mime-data to test jbig2 mime types 2013-09-15 21:27:50 +09:30
mime-data.base.rgb24.ref.png test: update mime-data to test jbig2 mime types 2013-09-15 21:27:50 +09:30
mime-data.pdf.ref.png test: update mime-data to test jbig2 mime types 2013-09-15 21:27:50 +09:30
mime-data.ps.ref.png test: update mime-data to test jbig2 mime types 2013-09-15 21:27:50 +09:30
mime-data.ref.png test: update mime-data to test jbig2 mime types 2013-09-15 21:27:50 +09:30
mime-data.script.ref.png test: update mime-data to test jbig2 mime types 2013-09-15 21:27:50 +09:30
mime-data.svg.ref.png test: update mime-data to test jbig2 mime types 2013-09-15 21:27:50 +09:30
miter-precision.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
miter-precision.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
miter-precision.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
miter-precision.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
miter-precision.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
miter-precision.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
miter-precision.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
miter-precision.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
move-to-show-surface.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
move-to-show-surface.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
move-to-show-surface.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
negative-stride-image.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
negative-stride-image.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
negative-stride-image.image16.ref.png test: Add negative-stride-image 2012-01-12 11:53:16 +01:00
negative-stride-image.ps.ref.png test: Add negative-stride-image 2012-01-12 11:53:16 +01:00
negative-stride-image.ref.png test: Add negative-stride-image 2012-01-12 11:53:16 +01:00
new-sub-path.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
new-sub-path.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
new-sub-path.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
new-sub-path.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
new-sub-path.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
new-sub-path.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
new-sub-path.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
new-sub-path.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
new-sub-path.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
new-sub-path.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
new-sub-path.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
new-sub-path.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
nil-surface.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
nil-surface.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
nil-surface.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
nil-surface.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
operator-alpha-alpha.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
operator-alpha-alpha.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
operator-alpha-alpha.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-alpha-alpha.pdf.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-alpha-alpha.ps.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-alpha-alpha.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-alpha-alpha.svg.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-alpha-alpha.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
operator-alpha-alpha.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
operator-alpha.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
operator-alpha.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-alpha.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-alpha.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
operator-alpha.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-alpha.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-clear.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
operator-clear.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
operator-clear.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
operator-clear.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
operator-clear.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-clear.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-clear.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-clear.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-clear.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
operator-clear.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-clear.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-clear.traps.argb32.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
operator-clear.traps.rgb24.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
operator-source.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
operator-source.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
operator-source.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
operator-source.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator-source.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
operator-source.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
operator-source.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
operator-source.traps.argb32.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
operator-source.traps.rgb24.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
operator-source.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
operator.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
operator.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
operator.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
outline-tolerance.ref.png tests: Add outline-tolerance 2012-08-20 13:34:33 +01:00
over-above-source.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
over-above-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-above-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-above-source.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-above-source.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-above-source.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-above-source.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-above-source.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
over-above-source.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-above-source.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
over-above-source.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
over-around-source.argb32.ref.png spans+image: Fix clipping with polygons and spans 2012-02-28 22:27:18 +00:00
over-around-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-around-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-around-source.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-around-source.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-around-source.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-around-source.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-around-source.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-around-source.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-around-source.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-around-source.rgb24.ref.png spans+image: Fix clipping with polygons and spans 2012-02-28 22:27:18 +00:00
over-around-source.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-around-source.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-around-source.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
over-around-source.traps.rgb24.ref.png test: Refresh reference images for spans/traps 2011-09-16 17:44:33 +01:00
over-below-source.argb32.ref.png spans+image: Fix clipping with polygons and spans 2012-02-28 22:27:18 +00:00
over-below-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-below-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-below-source.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-below-source.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-below-source.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-below-source.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-below-source.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-below-source.rgb24.ref.png spans+image: Fix clipping with polygons and spans 2012-02-28 22:27:18 +00:00
over-below-source.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-below-source.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-below-source.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
over-below-source.traps.rgb24.ref.png test: Refresh reference images for spans/traps 2011-09-16 17:44:33 +01:00
over-between-source.argb32.ref.png spans+image: Fix clipping with polygons and spans 2012-02-28 22:27:18 +00:00
over-between-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-between-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-between-source.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-between-source.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-between-source.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-between-source.rgb24.ref.png spans+image: Fix clipping with polygons and spans 2012-02-28 22:27:18 +00:00
over-between-source.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-between-source.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
over-between-source.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
over-between-source.traps.rgb24.ref.png test: Refresh reference images for spans/traps 2011-09-16 17:44:33 +01:00
overlapping-boxes.argb32.ref.png test: update two reference images highlighted to be wrong due to source extents 2012-03-29 11:58:35 +01:00
overlapping-boxes.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
overlapping-boxes.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
overlapping-boxes.rgb24.ref.png test: update two reference images highlighted to be wrong due to source extents 2012-03-29 11:58:35 +01:00
overlapping-boxes.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
overlapping-boxes.traps.rgb24.ref.png test: Refresh reference images for spans/traps 2011-09-16 17:44:33 +01:00
overlapping-dash-caps.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
overlapping-dash-caps.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
overlapping-dash-caps.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
overlapping-dash-caps.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
overlapping-dash-caps.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
overlapping-dash-caps.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
overlapping-dash-caps.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
overlapping-glyphs.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
overlapping-glyphs.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
overlapping-glyphs.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
overlapping-glyphs.pdf.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
overlapping-glyphs.pdf.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
overlapping-glyphs.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
overlapping-glyphs.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
overlapping-glyphs.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
overlapping-glyphs.svg.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
overlapping-glyphs.svg.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
overlapping-glyphs.traps.argb32.ref.png test: Update traps for changes in reference font 2012-02-22 10:11:16 +00:00
overlapping-glyphs.traps.rgb24.ref.png test: Update traps for changes in reference font 2012-02-22 10:11:16 +00:00
paint-clip-fill-aa.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-clip-fill-aa.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-clip-fill-aa.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-clip-fill-mono.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-clip-fill-mono.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-clip-fill-mono.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-repeat.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-repeat.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-repeat.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-source-alpha.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-source-alpha.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-source-alpha.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-source-alpha.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-source-alpha.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-with-alpha-clip-mask.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
paint-with-alpha-clip-mask.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
paint-with-alpha-clip-mask.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
paint-with-alpha-clip-mask.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
paint-with-alpha-clip-mask.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
paint-with-alpha-clip-mask.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
paint-with-alpha-clip-mask.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
paint-with-alpha-clip-mask.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
paint-with-alpha-clip.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
paint-with-alpha-clip.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
paint-with-alpha-clip.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
paint-with-alpha-clip.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
paint-with-alpha-clip.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-with-alpha-clip.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
paint-with-alpha-clip.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
paint-with-alpha-solid-clip.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
paint-with-alpha-solid-clip.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
paint-with-alpha-solid-clip.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
paint-with-alpha-solid-clip.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
paint-with-alpha-solid-clip.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-with-alpha-solid-clip.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
paint-with-alpha-solid-clip.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
paint-with-alpha.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-with-alpha.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-with-alpha.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-with-alpha.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint-with-alpha.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
paint.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-clip-text-bottom.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
partial-clip-text-bottom.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
partial-clip-text-bottom.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
partial-clip-text-bottom.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
partial-clip-text-left.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
partial-clip-text-left.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
partial-clip-text-left.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
partial-clip-text-left.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
partial-clip-text-right.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
partial-clip-text-right.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
partial-clip-text-right.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
partial-clip-text-right.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
partial-clip-text-right.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
partial-clip-text-top.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
partial-clip-text-top.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
partial-clip-text-top.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
partial-clip-text-top.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-clip-text-top.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-clip-text-top.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
partial-clip-text-top.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-clip-text-top.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
partial-coverage-half-reference.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-half-reference.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-half-reference.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-half-triangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-intersecting-quads.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-intersecting-quads.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-intersecting-triangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-overlap-half-triangles-eo.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-overlap-half-triangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-overlap-three-quarter-triangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-rectangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-reference.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-reference.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-reference.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-three-quarter-reference.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-three-quarter-reference.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-three-quarter-reference.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
partial-coverage-triangles.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pass-through.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
pass-through.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
pass-through.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
pass-through.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
path-append.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
path-append.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
path-append.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
path-append.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
path-append.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
path-append.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
path-append.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
path-append.test-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
path-append.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
path-append.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
path-append.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
path-stroke-twice.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
path-stroke-twice.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
path-stroke-twice.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
path-stroke-twice.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
path-stroke-twice.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
path-stroke-twice.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
path-stroke-twice.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
path-stroke-twice.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
pattern-getters.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pattern-getters.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pattern-getters.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pdf-isolated-group.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
pdf-isolated-group.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
pdf-isolated-group.ref.png test: add test to check that pdf transparency groups are non-isolated 2012-02-25 16:53:26 +10:30
pdf-surface-source.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pdf-surface-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pdf-surface-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pdf-surface-source.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pdf-surface-source.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pdf-surface-source.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pdf-surface-source.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pixman-downscale-best-24.ref.png test: Exercise image scaling quality when downscaling 2013-09-11 19:32:08 +02:00
pixman-downscale-best-95.ref.png test: Exercise image scaling quality when downscaling 2013-09-11 19:32:08 +02:00
pixman-downscale-best-96.ref.png test: Exercise image scaling quality when downscaling 2013-09-11 19:32:08 +02:00
pixman-downscale-bilinear-24.ref.png test: Exercise image scaling quality when downscaling 2013-09-11 19:32:08 +02:00
pixman-downscale-bilinear-95.ref.png test: Exercise image scaling quality when downscaling 2013-09-11 19:32:08 +02:00
pixman-downscale-bilinear-96.ref.png test: Exercise image scaling quality when downscaling 2013-09-11 19:32:08 +02:00
pixman-downscale-fast-24.ref.png test: Exercise image scaling quality when downscaling 2013-09-11 19:32:08 +02:00
pixman-downscale-fast-95.ref.png test: Move cairo_pattern_set_filter to after cairo_set_source_surface 2013-09-11 19:32:08 +02:00
pixman-downscale-fast-96.ref.png test: Exercise image scaling quality when downscaling 2013-09-11 19:32:08 +02:00
pixman-downscale-good-24.ref.png test: Exercise image scaling quality when downscaling 2013-09-11 19:32:08 +02:00
pixman-downscale-good-95.ref.png test: Exercise image scaling quality when downscaling 2013-09-11 19:32:08 +02:00
pixman-downscale-good-96.ref.png test: Exercise image scaling quality when downscaling 2013-09-11 19:32:08 +02:00
pixman-downscale-nearest-24.ref.png test: Exercise image scaling quality when downscaling 2013-09-11 19:32:08 +02:00
pixman-downscale-nearest-95.ref.png test: Move cairo_pattern_set_filter to after cairo_set_source_surface 2013-09-11 19:32:08 +02:00
pixman-downscale-nearest-96.ref.png test: Exercise image scaling quality when downscaling 2013-09-11 19:32:08 +02:00
pixman-rotate.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
pixman-rotate.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pixman-rotate.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pixman-rotate.ps.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pixman-rotate.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
ps-eps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ps-surface-source.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ps-surface-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ps-surface-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ps-surface-source.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ps-surface-source.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ps-surface-source.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
ps-surface-source.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pthread-same-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pthread-same-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pthread-same-source.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pthread-same-source.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pthread-same-source.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pthread-show-text.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
pthread-show-text.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
pthread-show-text.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
pthread-show-text.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pthread-show-text.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pthread-show-text.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pthread-show-text.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pthread-show-text.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
pthread-show-text.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
pthread-show-text.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pthread-similar.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pthread-similar.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
pthread-similar.ref.png _cairo_color_double_to_short(): Use standard rounding algorithm 2013-10-22 14:27:43 -04:00
push-group-color.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
push-group-color.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
push-group-color.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
push-group-color.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
push-group-color.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
push-group-color.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
push-group-color.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
push-group-color.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
push-group-color.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
push-group-color.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
push-group-path-offset.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
push-group-path-offset.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
push-group-path-offset.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
push-group.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
push-group.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
push-group.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
push-group.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
push-group.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
push-group.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
push-group.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
push-group.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
push-group.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
quartz-surface-source.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
quartz-surface-source.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
quartz-surface-source.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
quartz-surface-source.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-extend.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-extend.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-extend.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
radial-gradient-extend.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
radial-gradient-extend.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-extend.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-extend.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
radial-gradient-extend.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
radial-gradient-mask-source.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-mask-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-mask-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-mask-source.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-mask-source.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
radial-gradient-mask-source.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-mask-source.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-mask-source.traps.rgb24.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
radial-gradient-mask.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-mask.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-mask.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-mask.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-mask.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-one-stop.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-one-stop.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-one-stop.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-one-stop.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-source.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-source.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-source.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-source.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient-source.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-gradient.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
radial-outer-focus.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
radial-outer-focus.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
radial-outer-focus.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
radial-outer-focus.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
radial-outer-focus.traps.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
radial-outer-focus.traps.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
radial-outer-focus.xfail.png test: Record the current status of radial-outer-focus as xfail 2011-09-17 12:28:33 +01:00
random-clip.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
random-clip.base.argb32.xfail.png test/random-clips: Paint clip to highlight the issues 2011-09-26 13:30:35 +01:00
random-clip.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
random-clip.base.rgb24.xfail.png test/random-clips: Paint clip to highlight the issues 2011-09-26 13:30:35 +01:00
random-clip.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
random-clip.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
random-clip.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
random-clip.traps.argb32.ref.png test: Update traps for changes in reference font 2012-02-22 10:11:16 +00:00
random-clip.traps.rgb24.ref.png test: Update traps for changes in reference font 2012-02-22 10:11:16 +00:00
random-intersections-curves-eo.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
random-intersections-curves-eo.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-curves-eo.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-curves-eo.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-curves-eo.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-curves-eo.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-curves-eo.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-curves-eo.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
random-intersections-curves-eo.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
random-intersections-curves-eo.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
random-intersections-curves-eo.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-curves-nz.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
random-intersections-curves-nz.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-curves-nz.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-curves-nz.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-curves-nz.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-curves-nz.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-curves-nz.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-curves-nz.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
random-intersections-curves-nz.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
random-intersections-curves-nz.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
random-intersections-curves-nz.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-eo.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
random-intersections-eo.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-eo.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-eo.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-eo.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-eo.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-eo.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
random-intersections-eo.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
random-intersections-eo.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
random-intersections-nonzero.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
random-intersections-nonzero.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-nonzero.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-nonzero.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-nonzero.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-nonzero.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
random-intersections-nonzero.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
random-intersections-nonzero.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
random-intersections-nonzero.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
raster-source.base.argb32.ref.png Convert cairo_mime_surface_t to cairo_raster_source_pattern_t 2011-11-25 10:35:42 +00:00
raster-source.base.rgb24.ref.png Convert cairo_mime_surface_t to cairo_raster_source_pattern_t 2011-11-25 10:35:42 +00:00
raster-source.ps.ref.png ps: support RASTER_SOURCE patterns 2012-01-31 23:53:45 +10:30
raster-source.ref.png Convert cairo_mime_surface_t to cairo_raster_source_pattern_t 2011-11-25 10:35:42 +00:00
record-extend-none-similar.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-none-similar.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-none-similar.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
record-extend-none-similar.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-none-similar.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-none.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-extend-none.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-extend-none.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
record-extend-pad-similar.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-pad-similar.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-pad-similar.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
record-extend-pad-similar.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-pad-similar.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-pad.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-extend-pad.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-extend-pad.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
record-extend-reflect-similar.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-reflect-similar.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-reflect-similar.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
record-extend-reflect-similar.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-reflect-similar.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-reflect.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-extend-reflect.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-extend-reflect.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
record-extend-repeat-similar.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-repeat-similar.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-repeat-similar.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
record-extend-repeat-similar.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-repeat-similar.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-extend-repeat.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-extend-repeat.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-extend-repeat.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
record-fill-alpha.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-fill-alpha.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-fill-alpha.base.xfail.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-fill-alpha.image16.rgb24.ref.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-fill-alpha.ref.png tests: Update reference images after adjustments to polygon line clipping 2013-02-10 13:13:31 +00:00
record-fill-alpha.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
record-fill-alpha.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
record-fill-alpha.xfail.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-mesh.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-mesh.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-mesh.image16.rgb24.ref.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-mesh.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
record-paint-alpha-clip-mask.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-paint-alpha-clip-mask.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-paint-alpha-clip-mask.base.xfail.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-paint-alpha-clip-mask.image16.rgb24.ref.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-paint-alpha-clip-mask.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
record-paint-alpha-clip-mask.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
record-paint-alpha-clip-mask.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
record-paint-alpha-clip-mask.xfail.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-paint-alpha-clip.argb32.ref.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-paint-alpha-clip.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-paint-alpha-clip.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-paint-alpha-clip.image16.rgb24.ref.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-paint-alpha-clip.rgb24.ref.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-paint-alpha-clip.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
record-paint-alpha-clip.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
record-paint-alpha-solid-clip.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-paint-alpha-solid-clip.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-paint-alpha-solid-clip.image16.rgb24.ref.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-paint-alpha-solid-clip.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
record-paint-alpha-solid-clip.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
record-paint-alpha-solid-clip.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
record-paint-alpha.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-paint-alpha.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-paint-alpha.image16.rgb24.ref.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-paint-alpha.ref.png _cairo_color_double_to_short(): Use standard rounding algorithm 2013-10-22 14:27:43 -04:00
record-paint.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-paint.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record-paint.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
record-select-font-face.argb32.ref.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-select-font-face.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-select-font-face.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-select-font-face.image16.rgb24.ref.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-select-font-face.rgb24.ref.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-select-font-face.xfail.png test: Mark the record-select-font-face as XFAIL 2011-09-23 23:34:29 +01:00
record-self-intersecting.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-self-intersecting.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-self-intersecting.image16.rgb24.ref.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-self-intersecting.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
record-text-transform.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-text-transform.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record-text-transform.image16.rgb24.ref.png test: Regenerate reference images for vanilla record tests 2012-02-28 17:59:13 +00:00
record-text-transform.ref.png test/record: Fix typo in record*-text-transform 2012-02-27 15:14:33 +00:00
record2x-fill-alpha.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record2x-fill-alpha.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record2x-fill-alpha.base.xfail.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record2x-fill-alpha.ref.png test: Add a few reference images found lurking on my machine 2013-07-04 09:40:37 +01:00
record2x-fill-alpha.xfail.png test: Set record2x-fill-alpha as an xfail 2012-02-27 15:14:33 +00:00
record2x-paint-alpha-clip-mask.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record2x-paint-alpha-clip-mask.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record2x-paint-alpha-clip-mask.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record2x-paint-alpha-clip-mask.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record2x-paint-alpha-clip.argb32.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record2x-paint-alpha-clip.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record2x-paint-alpha-clip.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record2x-paint-alpha-clip.rgb24.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record2x-paint-alpha-solid-clip.argb32.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record2x-paint-alpha-solid-clip.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record2x-paint-alpha-solid-clip.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record2x-paint-alpha-solid-clip.rgb24.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record2x-paint-alpha.argb32.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record2x-paint-alpha.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record2x-paint-alpha.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record2x-paint-alpha.rgb24.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record2x-paint.argb32.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record2x-paint.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record2x-paint.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record2x-paint.rgb24.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record2x-select-font-face.argb32.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record2x-select-font-face.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record2x-select-font-face.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record2x-select-font-face.rgb24.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record2x-self-intersecting.argb32.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record2x-self-intersecting.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record2x-self-intersecting.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record2x-self-intersecting.rgb24.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record2x-text-transform.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record2x-text-transform.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record2x-text-transform.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
record90-fill-alpha.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record90-fill-alpha.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record90-fill-alpha.ref.png test: Add a few reference images found lurking on my machine 2013-07-04 09:40:37 +01:00
record90-fill-alpha.xfail.png test: Add record90 to exercise replaying a rotated recording surface 2012-02-28 17:38:21 +00:00
record90-paint-alpha-clip-mask.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record90-paint-alpha-clip-mask.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record90-paint-alpha-clip-mask.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
record90-paint-alpha-clip-mask.xfail.png test: Add record90 to exercise replaying a rotated recording surface 2012-02-28 17:38:21 +00:00
record90-paint-alpha-clip.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record90-paint-alpha-clip.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record90-paint-alpha-clip.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
record90-paint-alpha-clip.xfail.png test: Add record90 to exercise replaying a rotated recording surface 2012-02-28 17:38:21 +00:00
record90-paint-alpha-solid-clip.argb32.ref.png test: Add record90 to exercise replaying a rotated recording surface 2012-02-28 17:38:21 +00:00
record90-paint-alpha-solid-clip.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record90-paint-alpha-solid-clip.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record90-paint-alpha-solid-clip.rgb24.ref.png test: Add record90 to exercise replaying a rotated recording surface 2012-02-28 17:38:21 +00:00
record90-paint-alpha.argb32.ref.png _cairo_color_double_to_short(): Use standard rounding algorithm 2013-10-22 14:27:43 -04:00
record90-paint-alpha.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record90-paint-alpha.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record90-paint-alpha.rgb24.ref.png _cairo_color_double_to_short(): Use standard rounding algorithm 2013-10-22 14:27:43 -04:00
record90-paint.argb32.ref.png test: Add record90 to exercise replaying a rotated recording surface 2012-02-28 17:38:21 +00:00
record90-paint.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record90-paint.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record90-paint.rgb24.ref.png test: Add record90 to exercise replaying a rotated recording surface 2012-02-28 17:38:21 +00:00
record90-select-font-face.argb32.ref.png test: Add record90 to exercise replaying a rotated recording surface 2012-02-28 17:38:21 +00:00
record90-select-font-face.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record90-select-font-face.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record90-select-font-face.rgb24.ref.png test: Add record90 to exercise replaying a rotated recording surface 2012-02-28 17:38:21 +00:00
record90-self-intersecting.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record90-self-intersecting.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record90-self-intersecting.ref.png test/record90: Rotate the reference so that it is wholly visible 2012-05-23 12:27:47 +01:00
record90-text-transform.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record90-text-transform.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record90-text-transform.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
record1414x-fill-alpha.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-fill-alpha.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-fill-alpha.base.xfail.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record1414x-fill-alpha.ref.png test: Add a few reference images found lurking on my machine 2013-07-04 09:40:37 +01:00
record1414x-fill-alpha.xfail.png test/record1414: Pixel align the clip for replay 2012-03-02 12:30:28 +00:00
record1414x-paint-alpha-clip-mask.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-paint-alpha-clip-mask.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-paint-alpha-clip-mask.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-paint-alpha-clip-mask.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-paint-alpha-clip.argb32.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record1414x-paint-alpha-clip.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-paint-alpha-clip.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-paint-alpha-clip.rgb24.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record1414x-paint-alpha-solid-clip.argb32.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record1414x-paint-alpha-solid-clip.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-paint-alpha-solid-clip.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-paint-alpha-solid-clip.rgb24.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record1414x-paint-alpha.argb32.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record1414x-paint-alpha.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record1414x-paint-alpha.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record1414x-paint-alpha.rgb24.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record1414x-paint.argb32.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record1414x-paint.base.argb32.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record1414x-paint.base.rgb24.ref.png image: Correct origin of unbound recording surface source 2012-03-03 12:35:07 +00:00
record1414x-paint.rgb24.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record1414x-select-font-face.argb32.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record1414x-select-font-face.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-select-font-face.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-select-font-face.rgb24.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record1414x-self-intersecting.argb32.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record1414x-self-intersecting.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-self-intersecting.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-self-intersecting.rgb24.ref.png test: Verify scaled replay of a recording surface 2012-02-27 14:47:25 +00:00
record1414x-text-transform.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-text-transform.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
record1414x-text-transform.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
recordflip-fill-alpha.ref.png test: Exercise replaying a recording surface through a flip matrix 2013-02-12 10:46:42 +00:00
recordflip-paint-alpha-clip-mask.ref.png test: Exercise replaying a recording surface through a flip matrix 2013-02-12 10:46:42 +00:00
recordflip-paint-alpha-clip.ref.png test: Exercise replaying a recording surface through a flip matrix 2013-02-12 10:46:42 +00:00
recordflip-paint-alpha-solid-clip.ref.png test: Exercise replaying a recording surface through a flip matrix 2013-02-12 10:46:42 +00:00
recordflip-paint-alpha.ref.png test: Exercise replaying a recording surface through a flip matrix 2013-02-12 10:46:42 +00:00
recordflip-paint.ref.png test: Exercise replaying a recording surface through a flip matrix 2013-02-12 10:46:42 +00:00
recordflip-select-font-face.ref.png test: Exercise replaying a recording surface through a flip matrix 2013-02-12 10:46:42 +00:00
recordflip-self-intersecting.ref.png test: Exercise replaying a recording surface through a flip matrix 2013-02-12 10:46:42 +00:00
recordflip-text-transform.ref.png test: Exercise replaying a recording surface through a flip matrix 2013-02-12 10:46:42 +00:00
recording-surface-extend-none.argb32.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
recording-surface-extend-none.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-extend-none.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-extend-none.rgb24.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
recording-surface-extend-none.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
recording-surface-extend-none.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
recording-surface-extend-pad.argb32.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
recording-surface-extend-pad.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-extend-pad.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-extend-pad.rgb24.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
recording-surface-extend-pad.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
recording-surface-extend-pad.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
recording-surface-extend-reflect.argb32.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
recording-surface-extend-reflect.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-extend-reflect.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-extend-reflect.rgb24.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
recording-surface-extend-reflect.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
recording-surface-extend-reflect.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
recording-surface-extend-repeat.argb32.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
recording-surface-extend-repeat.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-extend-repeat.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-extend-repeat.rgb24.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
recording-surface-extend-repeat.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
recording-surface-extend-repeat.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
recording-surface-over.argb32.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
recording-surface-over.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-over.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-over.gl.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-over.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-over.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-over.pdf.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-over.ps.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-over.ps.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-over.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-over.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-over.rgb24.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
recording-surface-over.svg.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-over.svg.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-over.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
recording-surface-over.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
recording-surface-source.argb32.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
recording-surface-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
recording-surface-source.rgb24.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
recording-surface-source.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
recording-surface-source.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rectangle-rounding-error.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectangle-rounding-error.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectangle-rounding-error.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-dash-scale-unaligned.ref.png stroke(boxes): Convert the dash step back into device units before incrementing 2012-04-21 10:18:26 +01:00
rectilinear-dash-scale-unaligned.traps.ref.png stroke(boxes): Convert the dash step back into device units before incrementing 2012-04-21 10:18:26 +01:00
rectilinear-dash-scale.ref.png stroke(boxes): Convert the dash step back into device units before incrementing 2012-04-21 10:18:26 +01:00
rectilinear-dash.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-dash.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-dash.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
rectilinear-dash.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
rectilinear-dash.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-dash.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-dash.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rectilinear-dash.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rectilinear-fill.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-fill.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-fill.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-grid.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-grid.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-grid.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-grid.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-grid.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rectilinear-grid.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rectilinear-miter-limit.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
rectilinear-miter-limit.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-miter-limit.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-miter-limit.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-miter-limit.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-miter-limit.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
rectilinear-miter-limit.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rectilinear-miter-limit.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rectilinear-stroke.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-stroke.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-stroke.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rectilinear-stroke.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
reflected-stroke.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
reflected-stroke.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
reflected-stroke.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
reflected-stroke.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
reflected-stroke.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
reflected-stroke.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
reflected-stroke.ref.png pen: First check whether the in/out edges lie within the single pen vertex 2012-10-31 09:27:52 +00:00
reflected-stroke.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
reflected-stroke.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
rel-path.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
rel-path.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rel-path.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rel-path.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
rel-path.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rel-path.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rel-path.rgb24.ref.png tests: Update reference images after adjustments to polygon line clipping 2013-02-10 13:13:31 +00:00
rel-path.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rel-path.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rgb24-ignore-alpha.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rgb24-ignore-alpha.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rgb24-ignore-alpha.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rotate-clip-image-surface-paint.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
rotate-clip-image-surface-paint.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
rotate-clip-image-surface-paint.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
rotate-clip-image-surface-paint.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
rotate-clip-image-surface-paint.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rotate-clip-image-surface-paint.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rotate-clip-image-surface-paint.xlib-fallback.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
rotate-clip-image-surface-paint.xlib-window.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
rotate-image-surface-paint.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rotate-image-surface-paint.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rotate-image-surface-paint.pdf.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rotate-image-surface-paint.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rotate-image-surface-paint.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rotate-image-surface-paint.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rotate-image-surface-paint.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rotate-image-surface-paint.svg.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rotated-clip.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
rotated-clip.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
rotated-clip.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
rotated-clip.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rotated-clip.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
rotated-clip.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
rotated-clip.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rotated-clip.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rotated-clip.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
rotated-clip.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rotated-clip.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rounded-rectangle-fill.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
rounded-rectangle-fill.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rounded-rectangle-fill.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rounded-rectangle-fill.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rounded-rectangle-fill.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rounded-rectangle-fill.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rounded-rectangle-fill.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
rounded-rectangle-fill.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rounded-rectangle-fill.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
rounded-rectangle-stroke.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
rounded-rectangle-stroke.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
rounded-rectangle-stroke.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rounded-rectangle-stroke.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
rounded-rectangle-stroke.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
rounded-rectangle-stroke.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
rounded-rectangle-stroke.ref.png stroke: Don't drop clockwise==0 lines 2012-05-14 18:11:28 +01:00
rounded-rectangle-stroke.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
rounded-rectangle-stroke.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
sample-diagonal.ref.png test: Add a simple exercise for raster sampling of subpixel geometry 2012-07-09 21:57:03 +01:00
sample-horizontal.ref.png test: Add a simple exercise for raster sampling of subpixel geometry 2012-07-09 21:57:03 +01:00
sample-vertical.ref.png test: Add a simple exercise for raster sampling of subpixel geometry 2012-07-09 21:57:03 +01:00
scale-down-source-surface-paint.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-down-source-surface-paint.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-down-source-surface-paint.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-image.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
scale-offset-image.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-image.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-image.gl.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-image.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-image.pdf.argb32.ref.png test: refresh some pdf/ps refs 2011-09-16 23:04:53 +09:30
scale-offset-image.pdf.rgb24.ref.png test: refresh some pdf/ps refs 2011-09-16 23:04:53 +09:30
scale-offset-image.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-image.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-image.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
scale-offset-image.script.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-image.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
scale-offset-image.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
scale-offset-image.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-image.xlib-fallback.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-similar.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
scale-offset-similar.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-similar.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-similar.gl.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-similar.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-similar.pdf.argb32.ref.png test: refresh some pdf/ps refs 2011-09-16 23:04:53 +09:30
scale-offset-similar.pdf.rgb24.ref.png test: refresh some pdf/ps refs 2011-09-16 23:04:53 +09:30
scale-offset-similar.ps.ref.png test: refresh some pdf/ps refs 2011-09-16 23:04:53 +09:30
scale-offset-similar.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-similar.recording.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-similar.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
scale-offset-similar.script.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-similar.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
scale-offset-similar.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
scale-offset-similar.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-similar.xlib-fallback.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-similar.xlib.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-offset-xlib-fallback.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
scale-offset-xlib-window.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
scale-offset-xlib.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
scale-offset-xlib.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
scale-source-surface-paint.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
scale-source-surface-paint.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-source-surface-paint.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-source-surface-paint.pdf.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-source-surface-paint.pdf.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-source-surface-paint.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
scale-source-surface-paint.svg.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
scale-source-surface-paint.svg.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
select-font-face.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
select-font-face.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
select-font-face.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
select-font-face.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
select-font-face.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
select-font-face.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
select-font-face.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
select-font-face.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
select-font-face.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
self-copy-overlap.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
self-copy-overlap.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
self-copy-overlap.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
self-copy-overlap.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
self-copy-overlap.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
self-copy-overlap.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
self-copy.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
self-copy.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
self-copy.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
self-copy.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
self-copy.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
self-copy.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
self-copy.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
self-copy.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
self-intersecting.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
self-intersecting.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
self-intersecting.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
self-intersecting.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
self-intersecting.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
self-intersecting.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
self-intersecting.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
set-source.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
set-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
set-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
set-source.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
shape-general-convex.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
shape-general-convex.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
shape-general-convex.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
shape-general-convex.ps.ref.png test: refresh some pdf/ps refs 2011-09-16 23:04:53 +09:30
shape-general-convex.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
shape-general-convex.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
shape-general-convex.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
shape-sierpinski.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
shape-sierpinski.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
shape-sierpinski.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
shape-sierpinski.pdf.argb32.ref.png test: refresh some pdf/ps refs 2011-09-16 23:04:53 +09:30
shape-sierpinski.pdf.rgb24.ref.png test: refresh some pdf/ps refs 2011-09-16 23:04:53 +09:30
shape-sierpinski.ps.ref.png test: refresh some pdf/ps refs 2011-09-16 23:04:53 +09:30
shape-sierpinski.ps3.argb32.ref.png test: refresh some pdf/ps refs 2011-09-16 23:04:53 +09:30
shape-sierpinski.ps3.rgb24.ref.png test: refresh some pdf/ps refs 2011-09-16 23:04:53 +09:30
shape-sierpinski.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
shape-sierpinski.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
shape-sierpinski.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
show-glyphs-advance.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
show-glyphs-advance.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
show-glyphs-advance.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
show-glyphs-advance.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
show-glyphs-advance.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
show-glyphs-advance.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
show-glyphs-advance.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
show-glyphs-advance.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
show-glyphs-advance.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
show-glyphs-many.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
show-glyphs-many.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
show-glyphs-many.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
show-text-current-point.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
show-text-current-point.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
show-text-current-point.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
show-text-current-point.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
show-text-current-point.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
show-text-current-point.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
show-text-current-point.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
show-text-current-point.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
show-text-current-point.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
skew-extreme.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
skew-extreme.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
skew-extreme.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
skew-extreme.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
skew-extreme.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
skew-extreme.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
skew-extreme.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
skew-extreme.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
smask-fill.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
smask-fill.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-fill.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-fill.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-fill.pdf.ref.png test: refresh some pdf/ps refs 2011-09-16 22:52:05 +09:30
smask-fill.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-fill.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
smask-fill.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-fill.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
smask-fill.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
smask-image-mask.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
smask-image-mask.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-image-mask.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-image-mask.pdf.ref.png test: refresh some pdf/ps refs 2011-09-16 22:52:05 +09:30
smask-image-mask.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
smask-mask.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
smask-mask.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-mask.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-mask.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-mask.pdf.ref.png test: refresh some pdf/ps refs 2011-09-16 22:52:05 +09:30
smask-mask.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-mask.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
smask-mask.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-paint.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
smask-paint.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-paint.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-paint.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-paint.pdf.ref.png test: refresh some pdf/ps refs 2011-09-16 22:52:05 +09:30
smask-paint.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-paint.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
smask-paint.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-stroke.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
smask-stroke.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-stroke.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-stroke.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-stroke.pdf.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-stroke.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-stroke.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
smask-stroke.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
smask-stroke.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
smask-text.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
smask-text.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
smask-text.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
smask-text.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-text.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
smask-text.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
smask-text.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-text.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-text.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-text.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-text.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
smask-text.script.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-text.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask-text.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
smask-text.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
smask.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
smask.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
smask.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
smask.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
smask.pdf.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
smask.script.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
smask.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
smask.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
solid-pattern-cache-stress.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
solid-pattern-cache-stress.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
solid-pattern-cache-stress.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-clip-scale.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-clip-scale.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-clip-scale.gl.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-clip-scale.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-clip-scale.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-clip-scale.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-clip-scale.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-clip-scale.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-clip-scale.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-clip-scale.recording.ref.png test: Add a couple of reference images for the recording surface 2012-02-24 13:56:41 +00:00
source-clip-scale.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-clip-scale.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-clip.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-clip.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-clip.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-surface-scale-paint.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
source-surface-scale-paint.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-surface-scale-paint.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
source-surface-scale-paint.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
spline-decomposition.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
spline-decomposition.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
spline-decomposition.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
spline-decomposition.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
spline-decomposition.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
spline-decomposition.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
spline-decomposition.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
spline-decomposition.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
spline-decomposition.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
spline-decomposition.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
spline-decomposition.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
stride-12-image.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
stride-12-image.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
stride-12-image.image16.ref.png test: Add stride-12-image 2012-01-15 14:29:25 +01:00
stride-12-image.ps.ref.png test: Add stride-12-image 2012-01-15 14:29:25 +01:00
stride-12-image.ref.png test: Add stride-12-image 2012-01-15 14:29:25 +01:00
stride-12-xlib-fallback.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
stride-12-xlib-window.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
stride-12-xlib.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
stride-12-xlib.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
stroke-clipped.ref.png test: Refresh refs for aa noise following reduction of the 2-stage compositing 2013-01-31 15:15:03 +00:00
stroke-ctm-caps.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
stroke-ctm-caps.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
stroke-ctm-caps.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
stroke-ctm-caps.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
stroke-ctm-caps.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
stroke-ctm-caps.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
stroke-ctm-caps.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
stroke-ctm-caps.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
stroke-ctm-caps.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
stroke-ctm-caps.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
stroke-ctm-caps.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
stroke-image.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
stroke-image.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
stroke-image.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
stroke-image.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
stroke-image.pdf.ref.png test: refresh some pdf/ps refs 2011-09-16 22:52:05 +09:30
stroke-image.ps.ref.png test: refresh some pdf/ps refs 2011-09-16 22:52:05 +09:30
stroke-image.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
stroke-image.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
stroke-image.traps.argb32.ref.png test: Update traps for changes in reference font 2012-02-22 10:11:16 +00:00
stroke-image.traps.rgb24.ref.png test: Update traps for changes in reference font 2012-02-22 10:11:16 +00:00
stroke-open-box.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
stroke-open-box.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
stroke-open-box.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
stroke-pattern.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
stroke-pattern.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
stroke-pattern.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
stroke-pattern.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
stroke-pattern.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
stroke-xlib-fallback.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
stroke-xlib-window.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
stroke-xlib.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
stroke-xlib.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
subsurface-image-repeat.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-image-repeat.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-image-repeat.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-image-repeat.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-modify-child.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-modify-child.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-modify-child.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-modify-parent.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-modify-parent.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-modify-parent.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-outside-target.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-outside-target.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
subsurface-outside-target.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
subsurface-outside-target.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-pad.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-pad.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-pad.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-pad.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-reflect.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-reflect.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-reflect.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-repeat.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-repeat.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-repeat.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-scale.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
subsurface-scale.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
subsurface-scale.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
subsurface-scale.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
subsurface-scale.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
subsurface-scale.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
subsurface-similar-repeat.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-similar-repeat.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface-similar-repeat.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
subsurface.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
subsurface.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
subsurface.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
subsurface.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
subsurface.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
subsurface.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
surface-pattern-big-scale-down.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-big-scale-down.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-big-scale-down.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-big-scale-down.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-big-scale-down.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-operator.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
surface-pattern-operator.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
surface-pattern-operator.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-operator.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-operator.pdf.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-operator.pdf.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-operator.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-operator.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-operator.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
surface-pattern-operator.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
surface-pattern-operator.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
surface-pattern-scale-down-extend-none.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-none.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-none.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-none.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-pad.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-pad.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-pad.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-pad.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-reflect.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-reflect.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-reflect.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-reflect.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-repeat.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-repeat.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-repeat.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down-extend-repeat.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
surface-pattern-scale-down.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-down.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
surface-pattern-scale-up.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
surface-pattern-scale-up.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-up.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-up.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-up.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-up.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-up.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-up.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern-scale-up.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
surface-pattern.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
surface-pattern.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern.pdf.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern.ps.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern.quartz.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
surface-pattern.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
surface-pattern.svg.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
svg-surface-source.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
svg-surface-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
svg-surface-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
svg-surface-source.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
svg-surface-source.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
svg-surface-source.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
svg-surface-source.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-antialias-gray.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-antialias-gray.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
text-antialias-gray.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
text-antialias-gray.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-antialias-gray.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-antialias-gray.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-antialias-gray.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
text-antialias-none.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-antialias-none.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-antialias-none.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-antialias-none.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-antialias-subpixel-bgr.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-antialias-subpixel-bgr.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-bgr.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-bgr.image16.ref.png test: Add text-antialias-subpixel-{,v}{bgr,rgb} 2011-10-13 13:40:20 +02:00
text-antialias-subpixel-bgr.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-bgr.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-bgr.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-antialias-subpixel-bgr.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
text-antialias-subpixel-rgb.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-antialias-subpixel-rgb.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-rgb.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-rgb.image16.ref.png test: Add text-antialias-subpixel-{,v}{bgr,rgb} 2011-10-13 13:40:20 +02:00
text-antialias-subpixel-rgb.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-rgb.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-rgb.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-antialias-subpixel-rgb.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
text-antialias-subpixel-vbgr.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-antialias-subpixel-vbgr.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-vbgr.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-vbgr.image16.ref.png test: Add text-antialias-subpixel-{,v}{bgr,rgb} 2011-10-13 13:40:20 +02:00
text-antialias-subpixel-vbgr.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-vbgr.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-vbgr.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-antialias-subpixel-vbgr.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
text-antialias-subpixel-vrgb.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-antialias-subpixel-vrgb.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-vrgb.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-vrgb.image16.ref.png test: Add text-antialias-subpixel-{,v}{bgr,rgb} 2011-10-13 13:40:20 +02:00
text-antialias-subpixel-vrgb.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-vrgb.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel-vrgb.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-antialias-subpixel-vrgb.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
text-antialias-subpixel.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-antialias-subpixel.base.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel.base.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-antialias-subpixel.base.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel.base.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-antialias-subpixel.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-antialias-subpixel.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-antialias-subpixel.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-antialias-subpixel.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-antialias-subpixel.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
text-glyph-range.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-glyph-range.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
text-glyph-range.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
text-glyph-range.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-glyph-range.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-glyph-range.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-glyph-range.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-glyph-range.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
text-pattern.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-pattern.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
text-pattern.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
text-pattern.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-pattern.pdf.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-pattern.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-pattern.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-pattern.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-pattern.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-pattern.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-pattern.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-pattern.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
text-pattern.svg.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-pattern.svg.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-pattern.traps.argb32.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
text-pattern.traps.rgb24.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
text-rotate.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
text-rotate.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
text-rotate.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-rotate.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-rotate.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
text-rotate.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-rotate.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-rotate.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-rotate.ref.png stroke: Adapt rectilinear stroker to handle separable non-unity scaling 2012-03-19 20:02:50 +00:00
text-rotate.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-rotate.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
text-rotate.xlib-fallback.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-transform.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-transform.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-transform.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-transform.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-transform.pdf.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-transform.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-transform.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-transform.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
text-transform.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
tiger.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
tiger.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
tiger.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
tiger.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
tiger.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
tiger.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
tighten-bounds.argb32.ref.png test: Fix tighten-bounds reference images 2012-05-11 21:31:13 +01:00
tighten-bounds.base.argb32.ref.png clip: Apply clip boxes to the clip surface 2012-05-11 23:14:21 +01:00
tighten-bounds.base.rgb24.ref.png clip: Apply clip boxes to the clip surface 2012-05-11 23:14:21 +01:00
tighten-bounds.rgb24.ref.png test: Fix tighten-bounds reference images 2012-05-11 21:31:13 +01:00
tighten-bounds.traps.argb32.ref.png test: Fix tighten-bounds reference images 2012-05-11 21:31:13 +01:00
tighten-bounds.traps.rgb24.ref.png test: Fix tighten-bounds reference images 2012-05-11 21:31:13 +01:00
transforms.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
transforms.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
transforms.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
transforms.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
transforms.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
transforms.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
transforms.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
transforms.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
transforms.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
translate-show-surface.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
translate-show-surface.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
translate-show-surface.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
trap-clip.argb32.ref.png spans: Only fallback for a clipmask if unbounded 2012-05-11 21:53:55 +01:00
trap-clip.base.argb32.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
trap-clip.base.rgb24.ref.png base: Remove the double application of the clip boxes 2012-03-02 12:31:41 +00:00
trap-clip.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
trap-clip.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
trap-clip.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
trap-clip.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
trap-clip.ps2.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
trap-clip.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
trap-clip.ps3.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
trap-clip.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
trap-clip.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
trap-clip.rgb24.ref.png spans: Only fallback for a clipmask if unbounded 2012-05-11 21:53:55 +01:00
trap-clip.test-paginated.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
trap-clip.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
trap-clip.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
twin-antialias-gray.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin-antialias-gray.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin-antialias-gray.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
twin-antialias-gray.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
twin-antialias-gray.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
twin-antialias-gray.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin-antialias-gray.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin-antialias-gray.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin-antialias-mixed.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
twin-antialias-mixed.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin-antialias-mixed.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin-antialias-mixed.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
twin-antialias-mixed.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
twin-antialias-mixed.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin-antialias-mixed.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin-antialias-none.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
twin-antialias-none.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
twin-antialias-none.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
twin-antialias-none.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
twin-antialias-none.traps.argb32.ref.png test: Update traps for changes in reference font 2012-02-22 10:11:16 +00:00
twin-antialias-none.traps.rgb24.ref.png test: Update traps for changes in reference font 2012-02-22 10:11:16 +00:00
twin-antialias-subpixel.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin-antialias-subpixel.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin-antialias-subpixel.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
twin-antialias-subpixel.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
twin-antialias-subpixel.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
twin-antialias-subpixel.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin-antialias-subpixel.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin-antialias-subpixel.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
twin.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
twin.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
twin.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
twin.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
twin.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
twin.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
unaligned-box.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unaligned-box.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unaligned-box.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unaligned-box.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
unaligned-box.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
unantialiased-shapes.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unantialiased-shapes.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unantialiased-shapes.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unantialiased-shapes.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unantialiased-shapes.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
unantialiased-shapes.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
unbounded-operator.argb32.ref.png test: Refresh unbounded-operator 2012-05-23 12:20:50 +01:00
unbounded-operator.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
unbounded-operator.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
unbounded-operator.gl.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unbounded-operator.gl.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unbounded-operator.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unbounded-operator.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
unbounded-operator.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
unbounded-operator.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unbounded-operator.ps2.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unbounded-operator.ps3.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unbounded-operator.quartz.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unbounded-operator.quartz.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unbounded-operator.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
unbounded-operator.svg12.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unbounded-operator.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
unbounded-operator.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
unbounded-operator.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
unclosed-strokes.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
unclosed-strokes.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
unclosed-strokes.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
unclosed-strokes.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
unclosed-strokes.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
unclosed-strokes.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
user-font-mask.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-mask.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-mask.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-mask.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-mask.ps2.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-mask.ps3.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-mask.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-mask.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-proxy.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
user-font-proxy.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
user-font-proxy.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
user-font-proxy.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-proxy.pdf.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-proxy.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-proxy.pdf.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-proxy.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-proxy.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-proxy.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
user-font-proxy.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-proxy.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
user-font-rescale.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
user-font-rescale.base.argb32.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
user-font-rescale.base.rgb24.ref.png test: Update base reference images for new reference font 2012-02-22 10:09:05 +00:00
user-font-rescale.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-rescale.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-rescale.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-rescale.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
user-font-rescale.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font-rescale.traps.ref.png test: Referesh traps (xlib) reference images for font updates 2012-02-09 13:41:55 +00:00
user-font.base.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
user-font.base.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
user-font.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
user-font.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
user-font.pdf.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
user-font.svg.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
user-font.traps.argb32.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
user-font.traps.rgb24.ref.png test: Refresh reference images for slight alteration of curves 2012-10-05 13:29:06 +01:00
white-in-noop.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
white-in-noop.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
white-in-noop.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
world-map-fill.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
world-map-fill.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
world-map-fill.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
world-map-fill.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
world-map-fill.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
world-map-fill.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
world-map-fill.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
world-map-stroke.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
world-map-stroke.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
world-map-stroke.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
world-map-stroke.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
world-map-stroke.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
world-map-stroke.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
world-map-stroke.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
world-map-stroke.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
world-map-stroke.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
world-map.argb32.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
world-map.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
world-map.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
world-map.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
world-map.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
world-map.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
world-map.rgb24.ref.png test: Refresh reference images for antialiasing fix 2012-02-20 11:24:17 +00:00
world-map.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
world-map.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
xcb-huge-image-shm.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcb-huge-image-shm.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcb-huge-image-shm.ref.png _cairo_color_double_to_short(): Use standard rounding algorithm 2013-10-22 14:27:43 -04:00
xcb-huge-subimage.ref.png _cairo_color_double_to_short(): Use standard rounding algorithm 2013-10-22 14:27:43 -04:00
xcb-snapshot-assert.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcb-snapshot-assert.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcb-snapshot-assert.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcb-stress-cache.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcb-stress-cache.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcb-stress-cache.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcb-surface-source.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcb-surface-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcb-surface-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcb-surface-source.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcb-surface-source.ps.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcb-surface-source.ps.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcb-surface-source.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcomposite-projection.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcomposite-projection.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcomposite-projection.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcomposite-projection.mask.argb32.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
xcomposite-projection.mask.rgb24.ref.png test: Add a set of reference images for the mask-based compositor 2012-02-22 10:51:30 +00:00
xcomposite-projection.quartz.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcomposite-projection.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xcomposite-projection.traps.argb32.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
xcomposite-projection.traps.rgb24.ref.png test: Use the test-traps as the reference images for xlib/xcb 2011-09-16 11:09:22 +01:00
xlib-expose-event.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xlib-expose-event.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xlib-expose-event.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xlib-expose-event.ps.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xlib-expose-event.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xlib-surface-source.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xlib-surface-source.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xlib-surface-source.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xlib-surface-source.image16.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xlib-surface-source.ps.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xlib-surface-source.ps.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xlib-surface-source.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xlib-surface-source.svg12.argb32.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
xlib-surface-source.svg12.rgb24.xfail.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
zero-alpha.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
zero-alpha.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
zero-alpha.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
zero-mask.argb32.ref.png test: Remove conflicting .ref.png, .argb32.ref.png, .rgb24.ref.png 2013-07-04 10:02:46 +01:00
zero-mask.base.argb32.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
zero-mask.base.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00
zero-mask.rgb24.ref.png test: Move all the reference images to their own directory 2011-09-15 14:05:10 +01:00