linear-gradient-one-stop.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* -*- Mode: c; c-basic-offset: 4; indent-tabs-mode: t; tab-width: 8; -*- */
  2. /*
  3. * Copyright 2010 Andrea Canciani
  4. *
  5. * Permission is hereby granted, free of charge, to any person
  6. * obtaining a copy of this software and associated documentation
  7. * files (the "Software"), to deal in the Software without
  8. * restriction, including without limitation the rights to use, copy,
  9. * modify, merge, publish, distribute, sublicense, and/or sell copies
  10. * of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be
  14. * included in all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  17. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  18. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  19. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  20. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  21. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  22. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  23. * SOFTWARE.
  24. *
  25. * Author: Andrea Canciani <ranma42@gmail.com>
  26. */
  27. #include "cairo-test.h"
  28. #define NUM_EXTEND 4
  29. #define HEIGHT 16
  30. #define WIDTH 16
  31. #define PAD 3
  32. static cairo_test_status_t
  33. draw (cairo_t *cr, int width, int height)
  34. {
  35. cairo_pattern_t *pattern;
  36. unsigned int i, j;
  37. cairo_extend_t extend[NUM_EXTEND] = {
  38. CAIRO_EXTEND_NONE,
  39. CAIRO_EXTEND_REPEAT,
  40. CAIRO_EXTEND_REFLECT,
  41. CAIRO_EXTEND_PAD
  42. };
  43. cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
  44. cairo_translate (cr, PAD, PAD);
  45. for (i = 0; i < 3; i++) {
  46. cairo_save (cr);
  47. for (j = 0; j < NUM_EXTEND; j++) {
  48. cairo_reset_clip (cr);
  49. cairo_rectangle (cr, 0, 0, WIDTH, HEIGHT);
  50. cairo_clip (cr);
  51. if (i == 0)
  52. pattern = cairo_pattern_create_linear (0, 2*PAD, 0, HEIGHT - 2*PAD);
  53. else if (i == 1)
  54. pattern = cairo_pattern_create_linear (2*PAD, 2*PAD, HEIGHT - 2*PAD, HEIGHT - 2*PAD);
  55. else if (i == 2)
  56. pattern = cairo_pattern_create_linear (2*PAD, 0, HEIGHT - 2*PAD, 0);
  57. cairo_pattern_add_color_stop_rgb (pattern, 0.25, 0, 0, 1);
  58. cairo_pattern_set_extend (pattern, extend[j]);
  59. cairo_set_source (cr, pattern);
  60. cairo_paint (cr);
  61. cairo_pattern_destroy (pattern);
  62. cairo_translate (cr, WIDTH+PAD, 0);
  63. }
  64. cairo_restore (cr);
  65. cairo_translate (cr, 0, HEIGHT+PAD);
  66. }
  67. return CAIRO_TEST_SUCCESS;
  68. }
  69. CAIRO_TEST (linear_gradient_one_stop,
  70. "Tests linear gradients with a single stop",
  71. "gradient,linear,", /* keywords */
  72. NULL, /* requirements */
  73. (WIDTH+PAD) * NUM_EXTEND + PAD, 3*(HEIGHT + PAD) + PAD,
  74. NULL, draw)