2018-07-08 16:08:53 +02:00
|
|
|
|
|
|
|
#ifndef DECODE_H__
|
|
|
|
#define DECODE_H__
|
|
|
|
|
|
|
|
#include "intern.h"
|
|
|
|
|
2018-07-20 15:51:02 +02:00
|
|
|
extern void decode_spr(const uint8_t *src, int src_pitch, int w, int h, int depth, uint8_t *dst, int dst_pitch, int dst_x, int dst_y, bool amiga);
|
2018-07-13 14:34:11 +02:00
|
|
|
extern void decode_amiga_blk(const uint8_t *src, uint8_t *dst, int dst_pitch);
|
2018-07-20 15:51:02 +02:00
|
|
|
extern void decode_amiga_gfx(uint8_t *dst, int dst_pitch, int w, int h, int depth, const uint8_t *src, const int src_pitch, uint8_t palette_mask, uint16_t gfx_mask);
|
2018-07-08 16:08:53 +02:00
|
|
|
|
|
|
|
#endif /* DECODE_H__ */
|