mesh-pattern-accuracy.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * Copyright © 2009 Adrian Johnson
  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: Adrian Johnson <ajohnson@redneon.com>
  25. */
  26. #include "cairo-test.h"
  27. #include <float.h>
  28. #define SIZE 256
  29. /* This test is designed to test the accuracy of the rendering of mesh
  30. * patterns.
  31. *
  32. * Color accuracy is tested by a square patch covering the whole
  33. * surface with black and white corners.
  34. *
  35. * Extents accuracy is checked by a small red square patch at the
  36. * center of the surface which should measure 2x2 pixels.
  37. */
  38. static cairo_test_status_t
  39. draw (cairo_t *cr, int width, int height)
  40. {
  41. cairo_pattern_t *pattern;
  42. double offset;
  43. cairo_test_paint_checkered (cr);
  44. pattern = cairo_pattern_create_mesh ();
  45. cairo_mesh_pattern_begin_patch (pattern);
  46. cairo_mesh_pattern_move_to (pattern, 0, 0);
  47. cairo_mesh_pattern_line_to (pattern, 1, 0);
  48. cairo_mesh_pattern_line_to (pattern, 1, 1);
  49. cairo_mesh_pattern_line_to (pattern, 0, 1);
  50. cairo_mesh_pattern_set_corner_color_rgb (pattern, 0, 0, 0, 0);
  51. cairo_mesh_pattern_set_corner_color_rgb (pattern, 1, 1, 1, 1);
  52. cairo_mesh_pattern_set_corner_color_rgb (pattern, 2, 0, 0, 0);
  53. cairo_mesh_pattern_set_corner_color_rgb (pattern, 3, 1, 1, 1);
  54. cairo_mesh_pattern_end_patch (pattern);
  55. cairo_mesh_pattern_begin_patch (pattern);
  56. /* A small 1x1 red patch, that should be rendered as a 2x2 red
  57. * square in the center of the image */
  58. offset = 0.5 / SIZE;
  59. cairo_mesh_pattern_move_to (pattern, 0.5 + offset, 0.5 + offset);
  60. cairo_mesh_pattern_line_to (pattern, 0.5 + offset, 0.5 - offset);
  61. cairo_mesh_pattern_line_to (pattern, 0.5 - offset, 0.5 - offset);
  62. cairo_mesh_pattern_line_to (pattern, 0.5 - offset, 0.5 + offset);
  63. cairo_mesh_pattern_set_corner_color_rgb (pattern, 0, 1, 0, 0);
  64. cairo_mesh_pattern_set_corner_color_rgb (pattern, 1, 1, 0, 0);
  65. cairo_mesh_pattern_set_corner_color_rgb (pattern, 2, 1, 0, 0);
  66. cairo_mesh_pattern_set_corner_color_rgb (pattern, 3, 1, 0, 0);
  67. cairo_mesh_pattern_end_patch (pattern);
  68. cairo_scale (cr, SIZE, SIZE);
  69. cairo_set_source (cr, pattern);
  70. cairo_paint (cr);
  71. cairo_pattern_destroy (pattern);
  72. return CAIRO_TEST_SUCCESS;
  73. }
  74. CAIRO_TEST (mesh_pattern_accuracy,
  75. "Paint mesh pattern",
  76. "mesh, pattern", /* keywords */
  77. NULL, /* requirements */
  78. SIZE, SIZE,
  79. NULL, draw)