1 /*
2  * Triplane Classic - a side-scrolling dogfighting game.
3  * Copyright (C) 1996,1997,2009  Dodekaedron Software Creations Oy
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  * tjt@users.sourceforge.net
19  */
20 
21 #ifndef GFX_H
22 #define GFX_H
23 
24 #include "gfx/bitmap.h"
25 #include "gfx/font.h"
26 #include "gfx/fades.h"
27 #include "io/video.h"
28 
29 void fill_vircr(int x1, int y1, int x2, int y2, unsigned char vari);
30 void boxi(int x1, int y1, int x2, int y2, unsigned char vari);
31 void draw_line(int x1, int y1, int x2, int y2, unsigned char vari);
32 void putpix(int x, int y, unsigned char c, int x1, int y1, int x2, int y2);
33 void tyhjaa_vircr(void);
34 void do_all_clear(int do_retrace = 0);
35 
36 
37 
38 #endif
39