added 3dengfx into the repo, probably not the correct version for this
[summerhack] / src / 3dengfx / src / 3dengfx / texman.hpp
1 /*
2 This file is part of 3dengfx, realtime visualization system.
3 Copyright (C) 2004, 2005, 2006 John Tsiombikas <nuclear@siggraph.org>
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 2 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, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 */
19 #ifndef _TEXMAN_HPP_
20 #define _TEXMAN_HPP_
21
22 #include "textures.hpp"
23
24 void add_texture(Texture *texture, const char *fname = 0);
25 void remove_texture(Texture *texture);
26 Texture *find_texture(const char *fname);
27
28 Texture *get_texture(const char *fname);
29 void destroy_textures();
30
31
32 enum CubeMapIndex {
33         CUBE_MAP_INDEX_PX,
34         CUBE_MAP_INDEX_NX,
35         CUBE_MAP_INDEX_PY,
36         CUBE_MAP_INDEX_NY,
37         CUBE_MAP_INDEX_PZ,
38         CUBE_MAP_INDEX_NZ
39 };
40
41 Texture *make_cube_map(Texture **tex_array);
42 Texture *get_normal_cube();
43
44 bool is_cubemap(const char *fname);
45 Texture *load_cubemap(const char *fname);
46
47 #endif  // _TEXMAN_HPP_