a1-bug.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * Permission is hereby granted, free of charge, to any person
  3. * obtaining a copy of this software and associated documentation
  4. * files (the "Software"), to deal in the Software without
  5. * restriction, including without limitation the rights to use, copy,
  6. * modify, merge, publish, distribute, sublicense, and/or sell copies
  7. * of the Software, and to permit persons to whom the Software is
  8. * furnished to do so, subject to the following conditions:
  9. *
  10. * The above copyright notice and this permission notice shall be
  11. * included in all copies or substantial portions of the Software.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  14. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  15. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  16. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  17. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  18. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  19. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  20. * SOFTWARE.
  21. */
  22. #include "cairo-test.h"
  23. static cairo_test_status_t
  24. draw (cairo_t *cr, int width, int height)
  25. {
  26. static const struct point {
  27. double x;
  28. double y;
  29. } xy[] = {
  30. { 627.016212, 221.749777 },
  31. { 756.120787, 221.749777 },
  32. { 756.120787, 557.602766 },
  33. { 626.952721, 557.602766 },
  34. { 626.548456, 493.315729 },
  35. };
  36. unsigned int i;
  37. cairo_set_source_rgb (cr, 0, 0, 0);
  38. cairo_paint (cr);
  39. for (i = 0; i < ARRAY_LENGTH (xy); i++)
  40. cairo_line_to (cr, xy[i].x, xy[i].y);
  41. cairo_set_source_rgb (cr, 1, 0, 0);
  42. cairo_fill_preserve (cr);
  43. cairo_set_antialias (cr, CAIRO_ANTIALIAS_NONE);
  44. cairo_set_source_rgb (cr, 0, 1, 0);
  45. cairo_fill (cr);
  46. return CAIRO_TEST_SUCCESS;
  47. }
  48. CAIRO_TEST (a1_bug,
  49. "Check the fidelity of the rasterisation.",
  50. "a1, raster", /* keywords */
  51. "target=raster", /* requirements */
  52. 1000, 800,
  53. NULL, draw)