1 /*
2 
3 Copyright (C) 2015-2018 Night Dive Studios, LLC.
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 */
19 #ifndef __RENDTOOL_H
20 #define __RENDTOOL_H
21 
22 /*
23  * $Source: n:/project/cit/src/inc/RCS/rendtool.h $
24  * $Revision: 1.5 $
25  * $Author: dc $
26  * $Date: 1994/05/09 06:06:01 $
27  *
28  */
29 
30 void fr_show_rate(int color);
31 void game_fr_startup(void);
32 void game_fr_shutdown(void);
33 uchar *get_free_frame_buffer_bits(int size);                            // to get bitmap bits
34 void *get_scr_canvas_from_frame_buffer(int x, int y, int wid, int hgt); // to get an actual canvas
35 void game_fr_reparam(int is_128s, int full_scrn, int show_all);
36 #endif // __RENDTOOL_H
37