DEADSOFTWARE

update copyrights
[flatwaifu.git] / src / stubren / render.c
1 /* Copyright (C) 2020 SovietPony
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, version 3 of the License ONLY.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
14 */
16 #include "render.h"
18 const cfg_t *R_args (void) {
19 return NULL;
20 }
22 const cfg_t *R_conf (void) {
23 return NULL;
24 }
26 const menu_t *R_menu (void) {
27 return NULL;
28 }
30 void R_init (void) {
31 // stub
32 }
34 void R_draw (void) {
35 // stub
36 }
38 void R_done (void) {
39 // stub
40 }
42 void R_set_videomode (int w, int h, int fullscreen) {
43 // stub
44 }
46 void R_switch_texture (int x, int y) {
47 // stub
48 }
50 void R_get_name (int n, char s[8]) {
51 s[0] = 0;
52 }
54 int R_get_special_id (int n) {
55 return -1;
56 }
58 int R_get_swp (int n) {
59 return 0;
60 }
62 void R_begin_load (void) {
63 // stub
64 }
66 void R_load (char s[8]) {
67 // stub
68 }
70 void R_end_load (void) {
71 // stub
72 }
74 void R_loadsky (int sky) {
75 // stub
76 }