operator-clear.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /*
  2. * Copyright © 2005 Red Hat, Inc.
  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. * Red Hat, Inc. not be used in advertising or publicity pertaining to
  10. * distribution of the software without specific, written prior
  11. * permission. Red Hat, Inc. 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. * RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
  16. * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. * FITNESS, IN NO EVENT SHALL RED HAT, INC. 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. * Authors: Kristian Høgsberg <krh@redhat.com>
  24. * Owen Taylor <otaylor@redhat.com>
  25. */
  26. #include "cairo-test.h"
  27. #include <math.h>
  28. #include <stdio.h>
  29. #define WIDTH 16
  30. #define HEIGHT 16
  31. #define PAD 2
  32. static void
  33. set_solid_pattern (cairo_t *cr, int x, int y)
  34. {
  35. cairo_set_source_rgb (cr, 1.0, 0, 0.0);
  36. }
  37. static void
  38. set_gradient_pattern (cairo_t *cr, int x, int y)
  39. {
  40. cairo_pattern_t *pattern;
  41. pattern = cairo_pattern_create_linear (x, y, x + WIDTH, y + HEIGHT);
  42. cairo_pattern_add_color_stop_rgba (pattern, 0.2, 1, 0, 0, 1);
  43. cairo_pattern_add_color_stop_rgba (pattern, 0.8, 1, 0, 0, 0.0);
  44. cairo_set_source (cr, pattern);
  45. cairo_pattern_destroy (pattern);
  46. }
  47. static void
  48. draw_mask (cairo_t *cr, int x, int y)
  49. {
  50. cairo_surface_t *mask_surface;
  51. cairo_t *cr2;
  52. double width = (int)(0.9 * WIDTH);
  53. double height = (int)(0.9 * HEIGHT);
  54. x += 0.05 * WIDTH;
  55. y += 0.05 * HEIGHT;
  56. mask_surface = cairo_surface_create_similar (cairo_get_group_target (cr),
  57. CAIRO_CONTENT_ALPHA,
  58. width, height);
  59. cr2 = cairo_create (mask_surface);
  60. cairo_surface_destroy (mask_surface);
  61. cairo_set_source_rgb (cr2, 1, 1, 1); /* white */
  62. cairo_arc (cr2, 0.5 * width, 0.5 * height, 0.45 * height, 0, 2 * M_PI);
  63. cairo_fill (cr2);
  64. cairo_mask_surface (cr, cairo_get_target (cr2), x, y);
  65. cairo_destroy (cr2);
  66. }
  67. static void
  68. draw_glyphs (cairo_t *cr, int x, int y)
  69. {
  70. cairo_text_extents_t extents;
  71. cairo_set_font_size (cr, 0.8 * HEIGHT);
  72. cairo_text_extents (cr, "FG", &extents);
  73. cairo_move_to (cr,
  74. x + floor ((WIDTH - extents.width) / 2 + 0.5) - extents.x_bearing,
  75. y + floor ((HEIGHT - extents.height) / 2 + 0.5) - extents.y_bearing);
  76. cairo_show_text (cr, "FG");
  77. }
  78. static void
  79. draw_polygon (cairo_t *cr, int x, int y)
  80. {
  81. double width = (int)(0.9 * WIDTH);
  82. double height = (int)(0.9 * HEIGHT);
  83. x += 0.05 * WIDTH;
  84. y += 0.05 * HEIGHT;
  85. cairo_new_path (cr);
  86. cairo_move_to (cr, x, y);
  87. cairo_line_to (cr, x, y + height);
  88. cairo_line_to (cr, x + width / 2, y + 3 * height / 4);
  89. cairo_line_to (cr, x + width, y + height);
  90. cairo_line_to (cr, x + width, y);
  91. cairo_line_to (cr, x + width / 2, y + height / 4);
  92. cairo_close_path (cr);
  93. cairo_fill (cr);
  94. }
  95. static void
  96. draw_rects (cairo_t *cr, int x, int y)
  97. {
  98. double block_width = (int)(0.33 * WIDTH + 0.5);
  99. double block_height = (int)(0.33 * HEIGHT + 0.5);
  100. int i, j;
  101. for (i = 0; i < 3; i++)
  102. for (j = 0; j < 3; j++)
  103. if ((i + j) % 2 == 0)
  104. cairo_rectangle (cr,
  105. x + block_width * i, y + block_height * j,
  106. block_width, block_height);
  107. cairo_fill (cr);
  108. }
  109. static void (* const pattern_funcs[])(cairo_t *cr, int x, int y) = {
  110. set_solid_pattern,
  111. set_gradient_pattern,
  112. };
  113. static void (* const draw_funcs[])(cairo_t *cr, int x, int y) = {
  114. draw_mask,
  115. draw_glyphs,
  116. draw_polygon,
  117. draw_rects
  118. };
  119. #define IMAGE_WIDTH (ARRAY_LENGTH (pattern_funcs) * (WIDTH + PAD) + PAD)
  120. #define IMAGE_HEIGHT (ARRAY_LENGTH (draw_funcs) * (HEIGHT + PAD) + PAD)
  121. static cairo_test_status_t
  122. draw (cairo_t *cr, int width, int height)
  123. {
  124. const cairo_test_context_t *ctx = cairo_test_get_context (cr);
  125. size_t i, j, x, y;
  126. cairo_pattern_t *pattern;
  127. cairo_select_font_face (cr, CAIRO_TEST_FONT_FAMILY " Sans",
  128. CAIRO_FONT_SLANT_NORMAL,
  129. CAIRO_FONT_WEIGHT_NORMAL);
  130. for (j = 0; j < ARRAY_LENGTH (draw_funcs); j++) {
  131. for (i = 0; i < ARRAY_LENGTH (pattern_funcs); i++) {
  132. x = i * (WIDTH + PAD) + PAD;
  133. y = j * (HEIGHT + PAD) + PAD;
  134. cairo_save (cr);
  135. pattern = cairo_pattern_create_linear (x + WIDTH, y,
  136. x, y + HEIGHT);
  137. cairo_pattern_add_color_stop_rgba (pattern, 0.2,
  138. 0.0, 0.0, 1.0, 1.0); /* Solid blue */
  139. cairo_pattern_add_color_stop_rgba (pattern, 0.8,
  140. 0.0, 0.0, 1.0, 0.0); /* Transparent blue */
  141. cairo_set_source (cr, pattern);
  142. cairo_pattern_destroy (pattern);
  143. cairo_rectangle (cr, x, y, WIDTH, HEIGHT);
  144. cairo_fill_preserve (cr);
  145. cairo_clip (cr);
  146. cairo_set_operator (cr, CAIRO_OPERATOR_CLEAR);
  147. pattern_funcs[i] (cr, x, y);
  148. draw_funcs[j] (cr, x, y);
  149. if (cairo_status (cr))
  150. cairo_test_log (ctx, "%d %d HERE!\n", (int)i, (int)j);
  151. cairo_restore (cr);
  152. }
  153. }
  154. if (cairo_status (cr) != CAIRO_STATUS_SUCCESS)
  155. cairo_test_log (ctx, "%d %d .HERE!\n", (int)i, (int)j);
  156. return CAIRO_TEST_SUCCESS;
  157. }
  158. CAIRO_TEST (operator_clear,
  159. "Test of CAIRO_OPERATOR_CLEAR",
  160. "operator", /* keywords */
  161. NULL, /* requirements */
  162. IMAGE_WIDTH, IMAGE_HEIGHT,
  163. NULL, draw)