DEADSOFTWARE

49040173a7521b8b04ec8e70f93966b7a4b487b2
[flatwaifu.git] / src / render.h
1 #ifndef RENDER_H_INCLUDED
2 #define RENDER_H_INCLUDED
4 extern int SCRW, SCRH; // from vga.c
6 void R_draw (void);
7 void R_alloc (void);
8 void R_init (void);
9 void R_done (void);
11 void R_setgamma (int g);
12 int R_getgamma (void);
13 void R_toggle_fullscreen (void);
14 void R_set_videomode (int w, int h, int fullscreen);
16 void R_get_name (int n, char s[8]);
17 int R_get_special_id (int n);
18 void R_begin_load (void);
19 void R_load (char s[8], int f);
20 void R_end_load (void);
21 void R_loadsky (int sky);
23 #endif /* RENDER_H_INCLUDED */