SDL_test_compare.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. /**
  19. * \file SDL_test_compare.h
  20. *
  21. * Comparison function of SDL test framework.
  22. *
  23. * This code is a part of the SDL test library, not the main SDL library.
  24. */
  25. /*
  26. Defines comparison functions (i.e. for surfaces).
  27. */
  28. #ifndef SDL_test_compare_h_
  29. #define SDL_test_compare_h_
  30. #include <SDL3/SDL.h>
  31. #include <SDL3/SDL_begin_code.h>
  32. /* Set up for C function definitions, even when using C++ */
  33. #ifdef __cplusplus
  34. extern "C" {
  35. #endif
  36. /**
  37. * Compares a surface and with reference image data for equality
  38. *
  39. * \param surface Surface used in comparison
  40. * \param referenceSurface Test Surface used in comparison
  41. * \param allowable_error Allowable difference (=sum of squared difference for each RGB component) in blending accuracy.
  42. *
  43. * \returns 0 if comparison succeeded, >0 (=number of pixels for which the comparison failed) if comparison failed, -1 if any of the surfaces were NULL, -2 if the surface sizes differ.
  44. */
  45. int SDLCALL SDLTest_CompareSurfaces(SDL_Surface *surface, SDL_Surface *referenceSurface, int allowable_error);
  46. /**
  47. * Compares 2 memory blocks for equality
  48. *
  49. * \param actual Memory used in comparison, displayed on the left
  50. * \param size_actual Size of actual in bytes
  51. * \param reference Reference memory, displayed on the right
  52. * \param size_reference Size of reference in bytes
  53. *
  54. * \returns 0 if the left and right memory block are equal, non-zero if they are non-equal.
  55. *
  56. * \since This function is available since SDL 3.0.0.
  57. */
  58. int SDLCALL SDLTest_CompareMemory(const void *actual, size_t size_actual, const void *reference, size_t size_reference);
  59. /* Ends C function definitions when using C++ */
  60. #ifdef __cplusplus
  61. }
  62. #endif
  63. #include <SDL3/SDL_close_code.h>
  64. #endif /* SDL_test_compare_h_ */