leaky-dashed-rectangle.c 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * Copyright © 2008 Chris Wilson
  3. *
  4. * Permission to use, copy, modify, distribute, and sell this software
  5. * and its documentation for any purpose is hereby granted without
  6. * fee, provided that the above copyright notice appear in all copies
  7. * and that both that copyright notice and this permission notice
  8. * appear in supporting documentation, and that the name of
  9. * Chris Wilson not be used in advertising or publicity pertaining to
  10. * distribution of the software without specific, written prior
  11. * permission. Chris Wilson makes no representations about the
  12. * suitability of this software for any purpose. It is provided "as
  13. * is" without express or implied warranty.
  14. *
  15. * CHRIS WILSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
  16. * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. * FITNESS, IN NO EVENT SHALL CHRIS WILSON BE LIABLE FOR ANY SPECIAL,
  18. * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
  19. * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  20. * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
  21. * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22. *
  23. * Author: Chris Wilson <chris@chris-wilson.co.uk>
  24. * Franz Schmid <Franz.Schmid@altmuehlnet.de>
  25. */
  26. /* Test case for bug reported by Franz Schmid <Franz.Schmid@altmuehlnet.de>
  27. * http://lists.cairographics.org/archives/cairo/2008-April/013912.html
  28. *
  29. * See also: http://bugs.freedesktop.org/show_bug.cgi?id=17177
  30. */
  31. #include "cairo-test.h"
  32. #define WIDTH 60
  33. #define HEIGHT 60
  34. static cairo_test_status_t
  35. draw (cairo_t *cr, int width, int height)
  36. {
  37. const double dash[2] = {4, 2};
  38. cairo_set_source_rgb (cr, 1, 1, 1);
  39. cairo_paint (cr);
  40. cairo_set_source_rgb (cr, 0., 0., 0);
  41. cairo_translate (cr, 0.5, .5);
  42. cairo_set_line_width (cr, 1); /* This is vital to reproduce the bug. */
  43. /* First check simple rectangles */
  44. cairo_set_source_rgb (cr, 0., 0., 0);
  45. cairo_rectangle (cr, -WIDTH/4, -HEIGHT/4, WIDTH, HEIGHT);
  46. cairo_stroke (cr);
  47. cairo_rectangle (cr, WIDTH+WIDTH/4, -HEIGHT/4, -WIDTH, HEIGHT);
  48. cairo_stroke (cr);
  49. cairo_rectangle (cr, -WIDTH/4, HEIGHT+HEIGHT/4, WIDTH, -HEIGHT);
  50. cairo_stroke (cr);
  51. cairo_rectangle (cr, WIDTH+WIDTH/4, HEIGHT+HEIGHT/4, -WIDTH, -HEIGHT);
  52. cairo_stroke (cr);
  53. cairo_set_dash (cr, dash, 2, 0);
  54. /* And now dashed. */
  55. cairo_set_source_rgb (cr, 1., 0., 0);
  56. cairo_rectangle (cr, -WIDTH/4, -HEIGHT/4, WIDTH, HEIGHT);
  57. cairo_stroke (cr);
  58. cairo_set_source_rgb (cr, 0., 1., 0);
  59. cairo_rectangle (cr, WIDTH+WIDTH/4, -HEIGHT/4, -WIDTH, HEIGHT);
  60. cairo_stroke (cr);
  61. cairo_set_source_rgb (cr, 0., 0., 1);
  62. cairo_rectangle (cr, -WIDTH/4, HEIGHT+HEIGHT/4, WIDTH, -HEIGHT);
  63. cairo_stroke (cr);
  64. cairo_set_source_rgb (cr, 1., 1., 0);
  65. cairo_rectangle (cr, WIDTH+WIDTH/4, HEIGHT+HEIGHT/4, -WIDTH, -HEIGHT);
  66. cairo_stroke (cr);
  67. return CAIRO_TEST_SUCCESS;
  68. }
  69. CAIRO_TEST (leaky_dashed_rectangle,
  70. "Exercises bug in which a dashed stroke leaks in from outside the surface",
  71. "dash, stroke", /* keywords */
  72. NULL, /* requirements */
  73. WIDTH, HEIGHT,
  74. NULL, draw)