2000-06-12 23:06:35 +00:00
|
|
|
/* ************************************************************************** */
|
|
|
|
/* * For conditions of distribution and use, * */
|
|
|
|
/* * see copyright notice in libmng.h * */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
/* * * */
|
|
|
|
/* * project : libmng * */
|
2000-08-08 03:58:05 +00:00
|
|
|
/* * file : libmng_dither.h copyright (c) 2000 G.Juyn * */
|
2001-05-20 17:36:25 +00:00
|
|
|
/* * version : 1.0.0 * */
|
2000-06-12 23:06:35 +00:00
|
|
|
/* * * */
|
|
|
|
/* * purpose : Dithering routines (definition) * */
|
|
|
|
/* * * */
|
|
|
|
/* * author : G.Juyn * */
|
|
|
|
/* * web : http://www.3-t.com * */
|
|
|
|
/* * email : mailto:info@3-t.com * */
|
|
|
|
/* * * */
|
|
|
|
/* * comment : Definition of the dithering routines * */
|
|
|
|
/* * * */
|
|
|
|
/* * changes : 0.5.1 - 05/08/2000 - G.Juyn * */
|
|
|
|
/* * - changed strict-ANSI stuff * */
|
|
|
|
/* * * */
|
2000-08-08 03:58:05 +00:00
|
|
|
/* * 0.9.2 - 08/05/2000 - G.Juyn * */
|
|
|
|
/* * - changed file-prefixes * */
|
|
|
|
/* * * */
|
2000-06-12 23:06:35 +00:00
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
#if defined(__BORLANDC__) && defined(MNG_STRICT_ANSI)
|
|
|
|
#pragma option -A /* force ANSI-C */
|
|
|
|
#endif
|
|
|
|
|
2000-08-08 03:58:05 +00:00
|
|
|
#ifndef _libmng_dither_h_
|
|
|
|
#define _libmng_dither_h_
|
2000-06-12 23:06:35 +00:00
|
|
|
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
mng_retcode dither_a_row (mng_datap pData,
|
|
|
|
mng_uint8p pRow);
|
|
|
|
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
2000-08-08 03:58:05 +00:00
|
|
|
#endif /* _libmng_dither_h_ */
|
2000-06-12 23:06:35 +00:00
|
|
|
|
|
|
|
/* ************************************************************************** */
|
|
|
|
/* * end of file * */
|
|
|
|
/* ************************************************************************** */
|