cubemapper

view src/app.h @ 4:2bfafdced01a

added README, COPYING, and copyright headers
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 30 Jul 2017 16:11:19 +0300
parents e308561f9889
children
line source
1 /*
2 Cubemapper - a program for converting panoramic images into cubemaps
3 Copyright (C) 2017 John Tsiombikas <nuclear@member.fsf.org>
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.
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.
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 #ifndef APP_H_
19 #define APP_H_
21 bool app_init(int argc, char **argv);
22 void app_cleanup();
24 void app_draw();
26 void app_reshape(int x, int y);
27 void app_keyboard(int key, bool press);
28 void app_mouse_button(int bn, bool press, int x, int y);
29 void app_mouse_motion(int x, int y);
31 // functions implemented in main.cc
32 void app_quit();
33 void app_redisplay();
34 void app_swap_buffers();
35 void app_resize(int x, int y);
36 void app_print_text(int x, int y, const char *str);
38 #endif // APP_H_