| 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 |
|
|---|
| 30 | #include "libmng.h"
|
|---|
| 31 | #include "libmng_data.h"
|
|---|
| 32 | #include "libmng_error.h"
|
|---|
| 33 | #include "libmng_trace.h"
|
|---|
| 34 | #ifdef __BORLANDC__
|
|---|
| 35 | #pragma hdrstop
|
|---|
| 36 | #endif
|
|---|
| 37 | #include "libmng_dither.h"
|
|---|
| 38 |
|
|---|
| 39 | #if defined(__BORLANDC__) && defined(MNG_STRICT_ANSI)
|
|---|
| 40 | #pragma option -A /* force ANSI-C */
|
|---|
| 41 | #endif
|
|---|
| 42 |
|
|---|
| 43 | /* ************************************************************************** */
|
|---|
| 44 |
|
|---|
| 45 | mng_retcode mng_dither_a_row (mng_datap pData,
|
|---|
| 46 | mng_uint8p pRow)
|
|---|
| 47 | {
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 | return MNG_NOERROR;
|
|---|
| 51 | }
|
|---|
| 52 |
|
|---|
| 53 | /* ************************************************************************** */
|
|---|
| 54 | /* * end of file * */
|
|---|
| 55 | /* ************************************************************************** */
|
|---|
| 56 |
|
|---|
| 57 |
|
|---|
| 58 |
|
|---|