]> git.mxchange.org Git - simgear.git/blob - simgear/scene/material/mipmap.hxx
Random buildings - initial commit.
[simgear.git] / simgear / scene / material / mipmap.hxx
1 // Copyright (C) 2010  Frederic Bouvier
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Library General Public
5 // License as published by the Free Software Foundation; either
6 // version 2 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Library General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16
17 #ifndef SIMGEAR_MIPMAP_HXX
18 #define SIMGEAR_MIPMAP_HXX 1
19
20 #include <boost/tuple/tuple.hpp>
21
22 class SGPropertyNode;
23
24 namespace osg {
25     class Image;
26 }
27
28 namespace simgear
29 {
30 class Effect;
31 class SGReaderWriterOptions;
32
33 namespace effect {
34 enum MipMapFunction {
35     AUTOMATIC,
36     AVERAGE,
37     SUM,
38     PRODUCT,
39     MIN,
40     MAX
41 };
42
43 typedef boost::tuple<MipMapFunction, MipMapFunction, MipMapFunction, MipMapFunction> MipMapTuple;
44
45 MipMapTuple makeMipMapTuple(Effect* effect, const SGPropertyNode* props,
46                       const SGReaderWriterOptions* options);
47 osg::Image* computeMipmap( osg::Image* image, MipMapTuple attrs );
48 } }
49
50 #endif