mesh-pattern-control-points.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. #define SIZE 90
  28. #define PAD 10
  29. #define WIDTH (PAD + 2 * (SIZE + PAD))
  30. #define HEIGHT (PAD + SIZE + PAD)
  31. /*
  32. * This test is designed to paint a two mesh patches. One with default
  33. * control points and one with a control point at a no default
  34. * location. The control points of both of them are drawn as squares
  35. * to make them visible.
  36. */
  37. static cairo_test_status_t
  38. draw (cairo_t *cr, int width, int height)
  39. {
  40. cairo_pattern_t *pattern;
  41. unsigned int i, j;
  42. unsigned int num_patches;
  43. double x, y;
  44. cairo_set_source_rgb (cr, 1, 1, 1);
  45. cairo_paint (cr);
  46. cairo_translate (cr, PAD, PAD);
  47. pattern = cairo_pattern_create_mesh ();
  48. cairo_mesh_pattern_begin_patch (pattern);
  49. cairo_mesh_pattern_move_to (pattern, 0, 0);
  50. cairo_mesh_pattern_line_to (pattern, SIZE, 0);
  51. cairo_mesh_pattern_line_to (pattern, SIZE, SIZE);
  52. cairo_mesh_pattern_line_to (pattern, 0, SIZE);
  53. cairo_mesh_pattern_set_corner_color_rgb (pattern, 0, 1, 0, 0);
  54. cairo_mesh_pattern_set_corner_color_rgb (pattern, 1, 0, 1, 0);
  55. cairo_mesh_pattern_set_corner_color_rgb (pattern, 2, 0, 0, 1);
  56. cairo_mesh_pattern_set_corner_color_rgb (pattern, 3, 1, 1, 0);
  57. cairo_mesh_pattern_set_control_point (pattern, 0, SIZE * .7, SIZE * .7);
  58. cairo_mesh_pattern_set_control_point (pattern, 1, SIZE * .9, SIZE * .7);
  59. cairo_mesh_pattern_set_control_point (pattern, 2, SIZE * .9, SIZE * .9);
  60. cairo_mesh_pattern_set_control_point (pattern, 3, SIZE * .7, SIZE * .9);
  61. cairo_mesh_pattern_end_patch (pattern);
  62. cairo_mesh_pattern_begin_patch (pattern);
  63. cairo_mesh_pattern_move_to (pattern, SIZE + PAD, 0);
  64. cairo_mesh_pattern_line_to (pattern, 2*SIZE + PAD, 0);
  65. cairo_mesh_pattern_line_to (pattern, 2*SIZE + PAD, SIZE);
  66. cairo_mesh_pattern_line_to (pattern, SIZE + PAD, SIZE);
  67. cairo_mesh_pattern_set_corner_color_rgb (pattern, 0, 1, 0, 0);
  68. cairo_mesh_pattern_set_corner_color_rgb (pattern, 1, 0, 1, 0);
  69. cairo_mesh_pattern_set_corner_color_rgb (pattern, 2, 0, 0, 1);
  70. cairo_mesh_pattern_set_corner_color_rgb (pattern, 3, 1, 1, 0);
  71. cairo_mesh_pattern_end_patch (pattern);
  72. cairo_set_source (cr, pattern);
  73. cairo_paint (cr);
  74. /* mark the location of the control points */
  75. cairo_set_source_rgb (cr, 0, 0, 0);
  76. cairo_mesh_pattern_get_patch_count (pattern, &num_patches);
  77. for (i = 0; i < num_patches; i++) {
  78. for (j = 0; j < 4; j++) {
  79. cairo_mesh_pattern_get_control_point (pattern, i, j, &x, &y);
  80. cairo_rectangle (cr, x - 5, y - 5, 10, 10);
  81. cairo_fill (cr);
  82. }
  83. }
  84. cairo_pattern_destroy (pattern);
  85. return CAIRO_TEST_SUCCESS;
  86. }
  87. CAIRO_TEST (mesh_pattern_control_points,
  88. "Paint mesh pattern with non default control points",
  89. "mesh, pattern", /* keywords */
  90. NULL, /* requirements */
  91. WIDTH, HEIGHT,
  92. NULL, draw)