/src/FreeImage/Source/LibMNG/libmng_dither.c

https://bitbucket.org/cabalistic/ogredeps/ · C · 58 lines · 16 code · 10 blank · 32 comment · 1 complexity · 935967b2aab5d0b41e65cb096372f025 MD5 · raw file

  1. /* ************************************************************************** */
  2. /* * For conditions of distribution and use, * */
  3. /* * see copyright notice in libmng.h * */
  4. /* ************************************************************************** */
  5. /* * * */
  6. /* * project : libmng * */
  7. /* * file : libmng_dither.c copyright (c) 2000-2004 G.Juyn * */
  8. /* * version : 1.0.9 * */
  9. /* * * */
  10. /* * purpose : Dithering routines (implementation) * */
  11. /* * * */
  12. /* * author : G.Juyn * */
  13. /* * * */
  14. /* * comment : implementation of the dithering routines * */
  15. /* * * */
  16. /* * changes : 0.5.1 - 05/08/2000 - G.Juyn * */
  17. /* * - changed strict-ANSI stuff * */
  18. /* * * */
  19. /* * 0.9.2 - 08/05/2000 - G.Juyn * */
  20. /* * - changed file-prefixes * */
  21. /* * * */
  22. /* * 1.0.5 - 08/19/2002 - G.Juyn * */
  23. /* * - B597134 - libmng pollutes the linker namespace * */
  24. /* * * */
  25. /* * 1.0.9 - 12/20/2004 - G.Juyn * */
  26. /* * - cleaned up macro-invocations (thanks to D. Airlie) * */
  27. /* * * */
  28. /* ************************************************************************** */
  29. #include "libmng.h"
  30. #include "libmng_data.h"
  31. #include "libmng_error.h"
  32. #include "libmng_trace.h"
  33. #ifdef __BORLANDC__
  34. #pragma hdrstop
  35. #endif
  36. #include "libmng_dither.h"
  37. #if defined(__BORLANDC__) && defined(MNG_STRICT_ANSI)
  38. #pragma option -A /* force ANSI-C */
  39. #endif
  40. /* ************************************************************************** */
  41. mng_retcode mng_dither_a_row (mng_datap pData,
  42. mng_uint8p pRow)
  43. {
  44. return MNG_NOERROR;
  45. }
  46. /* ************************************************************************** */
  47. /* * end of file * */
  48. /* ************************************************************************** */