Revision 870,
672 bytes
checked in by mattausch, 19 years ago
(diff) |
added pvs
|
Line | |
---|
1 | #ifndef _VisibilityEnvironment_H__
|
---|
2 | #define _VisibilityEnvironment_H__
|
---|
3 |
|
---|
4 | #include <string>
|
---|
5 |
|
---|
6 | namespace GtpVisibility {
|
---|
7 |
|
---|
8 | /** This class provides different parameters for the visibility manager.
|
---|
9 | */
|
---|
10 | class VisibilityEnvironment
|
---|
11 | {
|
---|
12 | public:
|
---|
13 | VisibilityEnvironment();
|
---|
14 | ~VisibilityEnvironment();
|
---|
15 | /** Different types of occlusion culling algorithms
|
---|
16 | */
|
---|
17 | enum CullingManagerType {COHERENT_HIERARCHICAL_CULLING,
|
---|
18 | FRUSTUM_CULLING,
|
---|
19 | STOP_AND_WAIT_CULLING,
|
---|
20 | NUM_CULLING_MANAGERS};
|
---|
21 |
|
---|
22 | /** Loads an environment from disk.
|
---|
23 | */
|
---|
24 | void LoadEnvironment(std::string filename);
|
---|
25 | };
|
---|
26 | } // namespace GtpVisibility
|
---|
27 |
|
---|
28 | #endif // VisibilityEnvironment_H |
---|
Note: See
TracBrowser
for help on using the repository browser.