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