source: thomson/tools/gfx2mo5/libraw2mo5.h@ 15d3e8a

main
Last change on this file since 15d3e8a was 15d3e8a, checked in by Adrien Destugues <pulkomandy@…>, 8 years ago

gfx2mo5: can now convert bitmap16 files.

git-svn-id: svn://localhost/thomson@68 85ae3b6b-dc8f-4344-a89d-598714f2e4e5

  • Property mode set to 100644
File size: 486 bytes
Line 
1/* GFX2mo5 - libraw2mo5.h
2 * CloudStrife - 20080921
3 * Diffusé sous licence libre CeCILL v2
4 * Voir LICENCE
5 */
6
7#include <stdbool.h>
8
9#ifndef LIBRAW2mo5_H
10#define LIBRAW2mo5_H 1
11
12/* Convert picture to MO5/TO7/"40 columns" format (320x200, 16 colors, 8x1 blocks) */
13unsigned char * raw2mo5(unsigned char *input, int height, int fixup, bool to);
14
15/* Convert picture to "direct bitmap 16" format (160x200, 16 colors) */
16unsigned char * raw2bm16(unsigned char *input, int height);
17
18#endif
Note: See TracBrowser for help on using the repository browser.