Main Page
Namespaces
Classes
Files
File List
File Members
src
extern
QGLViewer
VRender
Optimizer.h
Go to the documentation of this file.
1
/*
2
This file is part of the VRender library.
3
Copyright (C) 2005 Cyril Soler (Cyril.Soler@imag.fr)
4
Version 1.0.0, released on June 27, 2005.
5
6
http://artis.imag.fr/Members/Cyril.Soler/VRender
7
8
VRender is free software; you can redistribute it and/or modify
9
it under the terms of the GNU General Public License as published by
10
the Free Software Foundation; either version 2 of the License, or
11
(at your option) any later version.
12
13
VRender is distributed in the hope that it will be useful,
14
but WITHOUT ANY WARRANTY; without even the implied warranty of
15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
GNU General Public License for more details.
17
18
You should have received a copy of the GNU General Public License
19
along with VRender; if not, write to the Free Software Foundation, Inc.,
20
51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
21
*/
22
23
/****************************************************************************
24
25
Copyright (C) 2002-2014 Gilles Debunne. All rights reserved.
26
27
This file is part of the QGLViewer library version 2.6.3.
28
29
http://www.libqglviewer.com - contact@libqglviewer.com
30
31
This file may be used under the terms of the GNU General Public License
32
versions 2.0 or 3.0 as published by the Free Software Foundation and
33
appearing in the LICENSE file included in the packaging of this file.
34
In addition, as a special exception, Gilles Debunne gives you certain
35
additional rights, described in the file GPL_EXCEPTION in this package.
36
37
libQGLViewer uses dual licensing. Commercial/proprietary software must
38
purchase a libQGLViewer Commercial License.
39
40
This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
41
WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
42
43
*****************************************************************************/
44
45
#ifndef _OPTIMIZER_H
46
#define _OPTIMIZER_H
47
48
#include "
Types.h
"
49
50
namespace
vrender
51
{
52
// Implements some global optimizations on the polygon sorting.
53
54
class
VRenderParams ;
55
class
Optimizer
56
{
57
public
:
58
virtual
void
optimize
(std::vector<PtrPrimitive>&,
VRenderParams
&) = 0 ;
59
virtual
~Optimizer
() {} ;
60
};
61
62
// Optimizes visibility by culling primitives which do not appear in the
63
// rendered image. Computations are done analytically rather than using an item
64
// buffer.
65
66
class
VisibilityOptimizer
:
public
Optimizer
67
{
68
public
:
69
virtual
void
optimize
(std::vector<PtrPrimitive>&,
VRenderParams
&) ;
70
virtual
~VisibilityOptimizer
() {} ;
71
};
72
73
// Optimizes by collapsing together primitives which can be, without
74
// perturbating the back to front painting algorithm.
75
76
class
PrimitiveSplitOptimizer
:
public
Optimizer
77
{
78
public
:
79
virtual
void
optimize
(std::vector<PtrPrimitive>&,
VRenderParams
&) {}
80
virtual
~PrimitiveSplitOptimizer
() {} ;
81
};
82
83
class
BackFaceCullingOptimizer
:
public
Optimizer
84
{
85
public
:
86
virtual
void
optimize
(std::vector<PtrPrimitive>&,
VRenderParams
&) ;
87
virtual
~BackFaceCullingOptimizer
() {} ;
88
};
89
}
90
91
#endif
Types.h
vrender::BackFaceCullingOptimizer::~BackFaceCullingOptimizer
virtual ~BackFaceCullingOptimizer()
Definition:
Optimizer.h:87
vrender::VRenderParams
Definition:
VRender.h:62
vrender::VisibilityOptimizer
Definition:
Optimizer.h:66
vrender::PrimitiveSplitOptimizer
Definition:
Optimizer.h:76
vrender::Optimizer
Definition:
Optimizer.h:55
vrender::VisibilityOptimizer::~VisibilityOptimizer
virtual ~VisibilityOptimizer()
Definition:
Optimizer.h:70
vrender::PrimitiveSplitOptimizer::optimize
virtual void optimize(std::vector< PtrPrimitive > &, VRenderParams &)
Definition:
Optimizer.h:79
vrender::Optimizer::optimize
virtual void optimize(std::vector< PtrPrimitive > &, VRenderParams &)=0
vrender::Optimizer::~Optimizer
virtual ~Optimizer()
Definition:
Optimizer.h:59
vrender::BackFaceCullingOptimizer
Definition:
Optimizer.h:83
vrender::PrimitiveSplitOptimizer::~PrimitiveSplitOptimizer
virtual ~PrimitiveSplitOptimizer()
Definition:
Optimizer.h:80
vrender
Definition:
AxisAlignedBox.h:48
octovis
Author(s): Kai M. Wurm
, Armin Hornung
autogenerated on Wed Jun 5 2019 19:26:39