summaryrefslogtreecommitdiff
path: root/test/filter-bilinear-extents.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2008-04-04 18:28:23 -0700
committerCarl Worth <cworth@cworth.org>2008-04-04 18:28:23 -0700
commit89567f9278c002ac5e4e25ddccec88b1b1eea420 (patch)
tree4083ae64034c3089cfd72a139882247be4409964 /test/filter-bilinear-extents.c
parent80f7aa03b35921a96683a0442f885c4b8335f3d9 (diff)
Add new filter-bilinear-extents test
This test exercises code that computes the extents of a surface pattern with CAIRO_FILTER_BILINEAR, (where the filtering effectively increases the extents of the pattern). The original bug was reported by Owen Taylor here: bad clipping with EXTEND_NONE http://bugs.freedesktop.org/show_bug.cgi?id=15349
Diffstat (limited to 'test/filter-bilinear-extents.c')
-rw-r--r--test/filter-bilinear-extents.c91
1 files changed, 91 insertions, 0 deletions
diff --git a/test/filter-bilinear-extents.c b/test/filter-bilinear-extents.c
new file mode 100644
index 000000000..a39a37c77
--- /dev/null
+++ b/test/filter-bilinear-extents.c
@@ -0,0 +1,91 @@
+/*
+ * Copyright © 2008 Red Hat, Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person
+ * obtaining a copy of this software and associated documentation
+ * files (the "Software"), to deal in the Software without
+ * restriction, including without limitation the rights to use, copy,
+ * modify, merge, publish, distribute, sublicense, and/or sell copies
+ * of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ * Authors: Carl D. Worth <cworth@cworth.org>
+ * Owen Taylor <otaylor@redhat.com>
+ */
+
+#include "cairo-test.h"
+
+static cairo_test_draw_function_t draw;
+
+/* This test exercises code that computes the extents of a surface
+ * pattern with CAIRO_FILTER_BILINEAR, (where the filtering
+ * effectively increases the extents of the pattern).
+ *
+ * The original bug was reported by Owen Taylor here:
+ *
+ * bad clipping with EXTEND_NONE
+ * http://bugs.freedesktop.org/show_bug.cgi?id=15349
+ */
+
+#define SCALE 10
+#define PAD 3
+#define WIDTH (PAD + 3 * SCALE + PAD)
+#define HEIGHT WIDTH
+
+cairo_test_t test = {
+ "filter-bilinear-extents",
+ "Test that pattern extents are properly computed for CAIRO_FILTER_BILINEAR",
+ WIDTH, HEIGHT,
+ draw
+};
+
+static cairo_test_status_t
+draw (cairo_t *cr, int width, int height)
+{
+ cairo_surface_t *checker;
+ cairo_t *cr2;
+
+ /* Create a 2x2 blue+red checker */
+ checker = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, 2, 2);
+ cr2 = cairo_create (checker);
+
+ cairo_set_source_rgb (cr2, 1, 0 ,0); /* red */
+ cairo_paint (cr2);
+ cairo_set_source_rgb (cr2, 0, 0, 1); /* blue */
+ cairo_rectangle (cr2, 0, 1, 1, 1);
+ cairo_rectangle (cr2, 1, 0, 1, 1);
+ cairo_fill (cr2);
+ cairo_destroy (cr2);
+
+ /* Draw our surface scaled with EXTEND_NONE */
+ cairo_set_source_rgb (cr, 0, 0, 0);
+ cairo_paint (cr);
+
+ cairo_save (cr);
+ cairo_translate (cr, PAD, PAD);
+ cairo_scale (cr, SCALE, SCALE);
+ cairo_translate (cr, 0.5, 0.5);
+ cairo_set_source_surface (cr, checker, 0, 0);
+ cairo_paint (cr);
+ cairo_restore (cr);
+
+ return CAIRO_TEST_SUCCESS;
+}
+
+int
+main (void)
+{
+ return cairo_test (&test);
+}