filter-nearest-offset.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. #define STAMP_WIDTH 4
  27. #define STAMP_HEIGHT 4
  28. #define PAD 1
  29. #define STEPS 10
  30. #define IMAGE_WIDTH (PAD + STEPS * (STAMP_WIDTH + PAD) + PAD)
  31. #define IMAGE_HEIGHT (PAD + STEPS * (STAMP_HEIGHT + PAD) + PAD)
  32. static cairo_test_status_t
  33. draw (cairo_t *cr, int width, int height)
  34. {
  35. cairo_surface_t *surface;
  36. uint32_t data[STAMP_WIDTH * STAMP_HEIGHT] = {
  37. 0xffffffff, 0xffffffff, 0xffff0000, 0xffff0000,
  38. 0xffffffff, 0xffffffff, 0xffff0000, 0xffff0000,
  39. 0xff00ff00, 0xff00ff00, 0xff0000ff, 0xff0000ff,
  40. 0xff00ff00, 0xff00ff00, 0xff0000ff, 0xff0000ff
  41. };
  42. int i, j;
  43. /* fill with off-white to avoid a separate rgb24 ref image */
  44. cairo_save (cr);
  45. cairo_set_source_rgb (cr, .7, .7, .7);
  46. cairo_paint (cr);
  47. cairo_restore (cr);
  48. /* Draw reference lines where the jump should be. */
  49. cairo_move_to (cr, PAD + STEPS / 2 * (STAMP_WIDTH + PAD), 0);
  50. cairo_rel_line_to (cr, 0, IMAGE_HEIGHT);
  51. cairo_move_to (cr, 0, PAD + STEPS / 2 * (STAMP_HEIGHT + PAD));
  52. cairo_rel_line_to (cr, IMAGE_WIDTH, 0);
  53. cairo_set_line_width (cr, 2.0);
  54. cairo_stroke (cr);
  55. surface = cairo_image_surface_create_for_data ((unsigned char *) data,
  56. CAIRO_FORMAT_RGB24,
  57. STAMP_WIDTH,
  58. STAMP_HEIGHT,
  59. STAMP_WIDTH * 4);
  60. for (j=0; j < STEPS; j++) {
  61. double j_step;
  62. for (i=0; i < STEPS; i++) {
  63. double i_step;
  64. #define GENERATE_REFERENCE_IMAGE 0
  65. #if GENERATE_REFERENCE_IMAGE
  66. i_step = i >= STEPS / 2 ? 1 : 0;
  67. j_step = j >= STEPS / 2 ? 1 : 0;
  68. #else
  69. i_step = i * 1.0 / STEPS;
  70. j_step = j * 1.0 / STEPS;
  71. #endif
  72. cairo_save (cr);
  73. cairo_set_source_surface (cr, surface,
  74. PAD + i * (STAMP_WIDTH + PAD) + i_step,
  75. PAD + j * (STAMP_HEIGHT + PAD) + j_step);
  76. cairo_pattern_set_filter (cairo_get_source (cr), CAIRO_FILTER_NEAREST);
  77. cairo_paint (cr);
  78. cairo_restore (cr);
  79. }
  80. }
  81. cairo_surface_finish (surface); /* data goes out of scope */
  82. cairo_surface_destroy (surface);
  83. return CAIRO_TEST_SUCCESS;
  84. }
  85. CAIRO_TEST (filter_nearest_offset,
  86. "Test sampling offset of CAIRO_FILTER_NEAREST"
  87. "\nwrong sampling location for nearest-neighbor filter in libpixman and Render",
  88. "filter", /* keywords */
  89. NULL, /* requirements */
  90. IMAGE_WIDTH, IMAGE_HEIGHT,
  91. NULL, draw)