~ubuntu-branches/ubuntu/lucid/gavl/lucid

« back to all changes in this revision

Viewing changes to gavl/libgdither/gdither_types.h

  • Committer: Bazaar Package Importer
  • Author(s): Free Ekanayaka
  • Date: 2006-05-17 14:24:46 UTC
  • Revision ID: james.westby@ubuntu.com-20060517142446-iqm0jgfbkmy27n5w
Tags: upstream-0.2.3
ImportĀ upstreamĀ versionĀ 0.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright (C) 2002 Steve Harris <steve@plugin.org.uk>
 
3
 *
 
4
 *  This program is free software; you can redistribute it and/or modify
 
5
 *  it under the terms of the GNU General Public License as published by
 
6
 *  the Free Software Foundation; either version 2 of the License, or
 
7
 *  (at your option) any later version.
 
8
 *
 
9
 *  This program is distributed in the hope that it will be useful,
 
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 *  GNU General Public License for more details.
 
13
 *
 
14
 *  You should have received a copy of the GNU General Public License
 
15
 *  along with this program; if not, write to the Free Software
 
16
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 *
 
18
 *  $Id: gdither_types.h,v 1.1 2005/02/26 12:18:28 gmerlin Exp $
 
19
 */
 
20
 
 
21
#ifndef GDITHER_TYPES_H
 
22
#define GDITHER_TYPES_H
 
23
 
 
24
#ifdef __cplusplus
 
25
extern "C" {
 
26
#endif
 
27
 
 
28
typedef enum {
 
29
    GDitherNone = 0,
 
30
    GDitherRect,
 
31
    GDitherTri,
 
32
    GDitherShaped
 
33
} GDitherType;
 
34
 
 
35
typedef enum {
 
36
    GDither8bit = 8,
 
37
    GDither16bit = 16,
 
38
    GDither32bit = 32,
 
39
    GDitherFloat = 25,
 
40
    GDitherDouble = 54
 
41
} GDitherSize;
 
42
 
 
43
typedef void *GDither;
 
44
 
 
45
#ifdef __cplusplus
 
46
}
 
47
#endif
 
48
 
 
49
#endif