set-source.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. * Author: Carl D. Worth <cworth@cworth.org>
  24. */
  25. #include "cairo-test.h"
  26. static cairo_test_status_t
  27. draw (cairo_t *cr, int width, int height)
  28. {
  29. int i;
  30. uint32_t color = 0x8019334c;
  31. cairo_surface_t *surface;
  32. cairo_pattern_t *pattern;
  33. surface = cairo_image_surface_create_for_data ((unsigned char *) &color,
  34. CAIRO_FORMAT_ARGB32, 1, 1, 4);
  35. pattern = cairo_pattern_create_for_surface (surface);
  36. cairo_pattern_set_extend (pattern, CAIRO_EXTEND_REPEAT);
  37. /* Several different means of making mostly the same color (though
  38. * we can't get anything but alpha==1.0 out of
  39. * cairo_set_source_rgb. */
  40. for (i=0; i < width; i++) {
  41. switch (i) {
  42. case 0:
  43. cairo_set_source_rgb (cr, .6, .7, .8);
  44. break;
  45. case 1:
  46. cairo_set_source_rgba (cr, .2, .4, .6, 0.5);
  47. break;
  48. case 2:
  49. #if WE_HAD_SUPPORT_FOR_PREMULTIPLIED
  50. cairo_set_source_rgba_premultiplied (cr, .1, .2, .3, 0.5);
  51. #else
  52. cairo_set_source_rgba (cr, .2, .4, .6, 0.5);
  53. #endif
  54. break;
  55. case 3:
  56. default:
  57. cairo_set_source (cr, pattern);
  58. break;
  59. }
  60. cairo_rectangle (cr, i, 0, 1, height);
  61. cairo_fill (cr);
  62. }
  63. cairo_pattern_destroy (pattern);
  64. cairo_surface_finish (surface); /* data will go out of scope */
  65. cairo_surface_destroy (surface);
  66. return CAIRO_TEST_SUCCESS;
  67. }
  68. CAIRO_TEST (set_source,
  69. "Tests calls to various set_source functions",
  70. "api", /* keywords */
  71. NULL, /* requirements */
  72. 5, 5,
  73. NULL, draw)