Blame gdither_types.h

Packit c948fe
/*
Packit c948fe
 *  Copyright (C) 2002 Steve Harris <steve@plugin.org.uk>
Packit c948fe
 *
Packit c948fe
 *  This program is free software; you can redistribute it and/or modify
Packit c948fe
 *  it under the terms of the GNU General Public License as published by
Packit c948fe
 *  the Free Software Foundation; either version 2 of the License, or
Packit c948fe
 *  (at your option) any later version.
Packit c948fe
 *
Packit c948fe
 *  This program is distributed in the hope that it will be useful,
Packit c948fe
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit c948fe
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit c948fe
 *  GNU General Public License for more details.
Packit c948fe
 *
Packit c948fe
 *  You should have received a copy of the GNU General Public License
Packit c948fe
 *  along with this program; if not, write to the Free Software
Packit c948fe
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Packit c948fe
 *
Packit c948fe
 *  $Id: dither.h,v 1.1 2003/01/07 16:44:16 pbd Exp $
Packit c948fe
 */
Packit c948fe
Packit c948fe
#ifndef GDITHER_TYPES_H
Packit c948fe
#define GDITHER_TYPES_H
Packit c948fe
Packit c948fe
#ifdef __cplusplus
Packit c948fe
extern "C" {
Packit c948fe
#endif
Packit c948fe
Packit c948fe
typedef enum {
Packit c948fe
    GDitherNone = 0,
Packit c948fe
    GDitherRect,
Packit c948fe
    GDitherTri,
Packit c948fe
    GDitherShaped
Packit c948fe
} GDitherType;
Packit c948fe
Packit c948fe
typedef enum {
Packit c948fe
    GDither8bit = 8,
Packit c948fe
    GDither16bit = 16,
Packit c948fe
    GDither32bit = 32,
Packit c948fe
    GDitherFloat = 25,
Packit c948fe
    GDitherDouble = 54
Packit c948fe
} GDitherSize;
Packit c948fe
Packit c948fe
typedef void *GDither;
Packit c948fe
Packit c948fe
#ifdef __cplusplus
Packit c948fe
}
Packit c948fe
#endif
Packit c948fe
Packit c948fe
#endif