DEADSOFTWARE

headers describes that c-files implements
[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);
15 void R_get_name (int n, char s[8]);
16 int R_get_special_id (int n);
17 void R_begin_load (void);
18 void R_load (char s[8], int f);
19 void R_end_load (void);
20 void R_loadsky (int sky);
22 #endif /* RENDER_H_INCLUDED */