dxx-rebirth/common/2d/bitmap.h

21 lines
547 B
C
Raw Normal View History

2014-06-01 17:55:23 +00:00
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.
*/
2006-03-20 16:43:15 +00:00
#ifndef _BITMAP_H
#define _BITMAP_H
2013-09-24 01:59:09 +00:00
#include "pstypes.h"
#ifdef __cplusplus
#include "palette.h"
void build_colormap_good( palette_array_t &palette, ubyte * colormap, int * freq );
void decode_data(ubyte *data, int num_pixels, ubyte * colormap, int * count );
2006-03-20 16:43:15 +00:00
#endif
2006-03-20 16:43:15 +00:00
#endif