1 // license:BSD-3-Clause
2 // copyright-holders:David Haywood
3 /* Special case 'Really Simple' blitters, no blending, no tinting etc.*/
4 
5 #include "emu.h"
6 #include "epic12.h"
7 
8 
9 #define REALLY_SIMPLE 1
10 #define BLENDED 0
11 
12 #define TRANSPARENT 1
13 #define FLIPX 0
14 #define FUNCNAME draw_sprite_f0_ti0_tr1_simple
15 #include "epic12in.hxx"
16 #undef FUNCNAME
17 #undef FLIPX
18 
19 #define FLIPX 1
20 #define FUNCNAME draw_sprite_f1_ti0_tr1_simple
21 #include "epic12in.hxx"
22 #undef FUNCNAME
23 #undef FLIPX
24 #undef TRANSPARENT
25 
26 
27 #define TRANSPARENT 0
28 #define FLIPX 0
29 #define FUNCNAME draw_sprite_f0_ti0_tr0_simple
30 #include "epic12in.hxx"
31 #undef FUNCNAME
32 #undef FLIPX
33 
34 #define FLIPX 1
35 #define FUNCNAME draw_sprite_f1_ti0_tr0_simple
36 #include "epic12in.hxx"
37 #undef FUNCNAME
38 #undef FLIPX
39 #undef TRANSPARENT
40 
41 #undef BLENDED
42 #undef REALLY_SIMPLE
43