moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kstars / kstars / indi / webcam / ccvt_types.h
blob81c07c8a3f38cdc789ca46b44cc69dfc11c482f5
1 /* CCVT: ColourConVerT: simple library for converting colourspaces
2 Copyright (C) 2002 Nemosoft Unv.
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 For questions, remarks, patches, etc. for this program, the author can be
19 reached at nemosoft@smcc.demon.nl.
22 #ifndef CCVT_TYPES_H
23 #define CCVT_TYPES_H
25 typedef struct
27 unsigned char b;
28 unsigned char g;
29 unsigned char r;
30 unsigned char z;
31 } PIXTYPE_bgr32;
33 typedef struct
35 unsigned char b;
36 unsigned char g;
37 unsigned char r;
38 } PIXTYPE_bgr24;
40 typedef struct
42 unsigned char r;
43 unsigned char g;
44 unsigned char b;
45 unsigned char z;
46 } PIXTYPE_rgb32;
48 typedef struct
50 unsigned char r;
51 unsigned char g;
52 unsigned char b;
53 } PIXTYPE_rgb24;
55 #define SAT(c) \
56 if (c & (~255)) { if (c < 0) c = 0; else c = 255; }
60 #endif