Revision 175,
616 bytes
checked in by mattausch, 19 years ago
(diff) |
added trees
|
Rev | Line | |
---|
[59] | 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 | */
|
---|
[175] | 15 | enum CullingManagerType {
|
---|
| 16 | COHERENT_HIERARCHICAL_CULLING,
|
---|
| 17 | FRUSTUM_CULLING,
|
---|
[74] | 18 | STOP_AND_WAIT_CULLING,
|
---|
| 19 | NUM_CULLING_MANAGERS};
|
---|
[59] | 20 |
|
---|
| 21 | /** Loads an environment from disk.
|
---|
| 22 | */
|
---|
| 23 | void LoadEnvironment();
|
---|
| 24 | };
|
---|
| 25 | } // namespace GtpVisibility
|
---|
[71] | 26 |
|
---|
[59] | 27 | #endif // VisibilityEnvironment_H |
---|
Note: See
TracBrowser
for help on using the repository browser.