summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/epic12_blit8.cpp
blob: fb0ff8a7e24a206268d19ec78e8340b9a76118a4 (plain) (blame)
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
// license:BSD-3-Clause
// copyright-holders:David Haywood
/* Special case 'Really Simple' blitters, no blending, no tinting etc.*/

#include "emu.h"
#include "epic12.h"


#define REALLY_SIMPLE 1
#define BLENDED 0

#define TRANSPARENT 1
#define FLIPX 0
#define FUNCNAME draw_sprite_f0_ti0_tr1_simple
#include "epic12in.hxx"
#undef FUNCNAME
#undef FLIPX

#define FLIPX 1
#define FUNCNAME draw_sprite_f1_ti0_tr1_simple
#include "epic12in.hxx"
#undef FUNCNAME
#undef FLIPX
#undef TRANSPARENT


#define TRANSPARENT 0
#define FLIPX 0
#define FUNCNAME draw_sprite_f0_ti0_tr0_simple
#include "epic12in.hxx"
#undef FUNCNAME
#undef FLIPX

#define FLIPX 1
#define FUNCNAME draw_sprite_f1_ti0_tr0_simple
#include "epic12in.hxx"
#undef FUNCNAME
#undef FLIPX
#undef TRANSPARENT

#undef BLENDED
#undef REALLY_SIMPLE