push-group-path-offset.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * Copyright 2010 Red Hat Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person
  5. * obtaining a copy of this software and associated documentation
  6. * files (the "Software"), to deal in the Software without
  7. * restriction, including without limitation the rights to use, copy,
  8. * modify, merge, publish, distribute, sublicense, and/or sell copies
  9. * of the Software, and to permit persons to whom the Software is
  10. * furnished to do so, subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice shall be
  13. * included in all copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  16. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  17. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  18. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  19. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  20. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  21. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  22. * SOFTWARE.
  23. *
  24. * Author: Benjamin Otte <otte@gnome.org>
  25. */
  26. #include "cairo-test.h"
  27. #define CLIP_OFFSET 15
  28. #define CLIP_SIZE 20
  29. #define WIDTH 50
  30. #define HEIGHT 50
  31. static cairo_test_status_t
  32. draw (cairo_t *cr, int width, int height)
  33. {
  34. /* Neutral gray background */
  35. cairo_set_source_rgb (cr, 0.51613, 0.55555, 0.51613);
  36. cairo_paint (cr);
  37. /* the rest uses CAIRO_OPERATOR_SOURCE so we see better when something goes wrong */
  38. cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
  39. /* add a rectangle */
  40. cairo_rectangle (cr, CLIP_OFFSET, CLIP_OFFSET, CLIP_SIZE, CLIP_SIZE);
  41. /* clip to the rectangle */
  42. cairo_clip_preserve (cr);
  43. /* push a group. We now have a device offset. */
  44. cairo_push_group (cr);
  45. /* push a group again. This is where the bug used to happen. */
  46. cairo_push_group (cr);
  47. /* draw something */
  48. cairo_set_source_rgb (cr, 1, 0, 0);
  49. cairo_fill_preserve (cr);
  50. /* make sure the stuff we drew ends up on the output */
  51. cairo_pop_group_to_source (cr);
  52. cairo_fill_preserve (cr);
  53. cairo_pop_group_to_source (cr);
  54. cairo_fill_preserve (cr);
  55. return CAIRO_TEST_SUCCESS;
  56. }
  57. CAIRO_TEST (push_group_path_offset,
  58. "Exercises a bug in Cairo 1.9 where existing paths applied the target's"
  59. " device offset twice when cairo_push_group() was called.",
  60. "group, path", /* keywords */
  61. NULL, /* requirements */
  62. WIDTH, HEIGHT,
  63. NULL, draw)