pattern-get-type.c 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * Copyright © 2006 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. preamble (cairo_test_context_t *Ctx)
  28. {
  29. cairo_surface_t *surface;
  30. cairo_pattern_t *solid_rgb, *solid_rgba, *surface_pattern, *linear, *radial, *mesh;
  31. cairo_test_status_t result = CAIRO_TEST_SUCCESS;
  32. solid_rgb = cairo_pattern_create_rgb (0.0, 0.1, 0.2);
  33. solid_rgba = cairo_pattern_create_rgba (0.3, 0.4, 0.5, 0.6);
  34. surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32,
  35. 1, 1);
  36. surface_pattern = cairo_pattern_create_for_surface (surface);
  37. linear = cairo_pattern_create_linear (0.0, 0.0, 10.0, 10.0);
  38. radial = cairo_pattern_create_radial (10.0, 10.0, 0.1,
  39. 10.0, 10.0, 1.0);
  40. mesh = cairo_pattern_create_mesh ();
  41. if (cairo_pattern_get_type (solid_rgb) != CAIRO_PATTERN_TYPE_SOLID)
  42. result = CAIRO_TEST_FAILURE;
  43. if (cairo_pattern_get_type (solid_rgba) != CAIRO_PATTERN_TYPE_SOLID)
  44. result = CAIRO_TEST_FAILURE;
  45. if (cairo_pattern_get_type (surface_pattern) != CAIRO_PATTERN_TYPE_SURFACE)
  46. result = CAIRO_TEST_FAILURE;
  47. if (cairo_pattern_get_type (linear) != CAIRO_PATTERN_TYPE_LINEAR)
  48. result = CAIRO_TEST_FAILURE;
  49. if (cairo_pattern_get_type (radial) != CAIRO_PATTERN_TYPE_RADIAL)
  50. result = CAIRO_TEST_FAILURE;
  51. if (cairo_pattern_get_type (mesh) != CAIRO_PATTERN_TYPE_MESH)
  52. result = CAIRO_TEST_FAILURE;
  53. cairo_pattern_destroy (solid_rgb);
  54. cairo_pattern_destroy (solid_rgba);
  55. cairo_pattern_destroy (surface_pattern);
  56. cairo_surface_destroy (surface);
  57. cairo_pattern_destroy (linear);
  58. cairo_pattern_destroy (radial);
  59. cairo_pattern_destroy (mesh);
  60. return result;
  61. }
  62. CAIRO_TEST (pattern_get_type,
  63. "Creating patterns of all types",
  64. "pattern, api", /* keywords */
  65. NULL, /* requirements */
  66. 0, 0,
  67. preamble, NULL)