source: trunk/src/3rdparty/libmng/libmng_dither.c

Last change on this file was 2, checked in by dmik, 20 years ago

Imported xplatform parts of the official release 3.3.1 from Trolltech

  • Property svn:keywords set to Id
File size: 2.7 KB
Line 
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 G.Juyn * */
8/* * version : 1.0.0 * */
9/* * * */
10/* * purpose : Dithering routines (implementation) * */
11/* * * */
12/* * author : G.Juyn * */
13/* * web : http://www.3-t.com * */
14/* * email : mailto:info@3-t.com * */
15/* * * */
16/* * comment : implementation of the dithering routines * */
17/* * * */
18/* * changes : 0.5.1 - 05/08/2000 - G.Juyn * */
19/* * - changed strict-ANSI stuff * */
20/* * * */
21/* * 0.9.2 - 08/05/2000 - G.Juyn * */
22/* * - changed file-prefixes * */
23/* * * */
24/* ************************************************************************** */
25
26#include "libmng.h"
27#include "libmng_data.h"
28#include "libmng_error.h"
29#include "libmng_trace.h"
30#ifdef __BORLANDC__
31#pragma hdrstop
32#endif
33#include "libmng_dither.h"
34
35#if defined(__BORLANDC__) && defined(MNG_STRICT_ANSI)
36#pragma option -A /* force ANSI-C */
37#endif
38
39/* ************************************************************************** */
40
41mng_retcode dither_a_row (mng_datap pData,
42 mng_uint8p pRow)
43{
44
45
46 return MNG_NOERROR;
47}
48
49/* ************************************************************************** */
50/* * end of file * */
51/* ************************************************************************** */
52
53
54
Note: See TracBrowser for help on using the repository browser.