File: eng_conv.h

package info (click to toggle)
gtkatlantic 0.4.2-3
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 4,236 kB
  • ctags: 745
  • sloc: sh: 8,786; ansic: 8,311; xml: 191; makefile: 40
file content (60 lines) | stat: -rw-r--r-- 1,898 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
 *     gtkatlantic - the gtk+ monopd client, enjoy network monopoly games
 *
 *
 *  Copyright (C) 2002-2004 Rochet Sylvain
 *
 *  gtkatlantic is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <glib.h>

/* all functions in eng_conv.c convert buff
 *
 * return 1 on success
 * return 0 if error occur
 *
 * all functions kill process if error occurs when allocate memory
 */

/* -- POSSIBLE CONVERT
 *
 * this program can't create table of color
 * 8bit pictures is only black&white pictures
 *
 * convert 8, 16 or 24 bits to mask mode :
 *
 *     --  8 to mask:
 *     original:  04 10 00 ef 00 f4
 *     final:     01 01 00 01 00 01
 *
 *     -- 16 to mask:
 *     original:  ffff 0000 0000 5de2 aaaa 0000 ffff 2222
 *     final:       01   00   00   01   01   00   01   01
 *
 *     -- 32 to mask:
 *     original:  ffffff 000000 778822 fed204 000000 000000 153233
 *     final:         01     00     01     01     00     00     01
 *
 */


/* -- prototypes for eng_conv.c -- */

void eng_conv_8_to_mask(guchar * in, guchar * out, guint32 nb_pixel);
void eng_conv_16_to_mask(guchar * in, guchar * out, guint32 nb_pixel);
void eng_conv_24_to_mask(guchar * in, guchar * out, guint32 nb_pixel);

/* -- end of prototypes -- */