Revision 2800,
505 bytes
checked in by mattausch, 16 years ago
(diff) |
friendly culling debug version with timers, no materials
|
Line | |
---|
1 | #ifndef __STOPANDWAITTRAVERSER_H
|
---|
2 | #define __STOPANDWAITTRAVERSER_H
|
---|
3 |
|
---|
4 | #include "RenderTraverser.h"
|
---|
5 |
|
---|
6 |
|
---|
7 | namespace CHCDemoEngine
|
---|
8 | {
|
---|
9 |
|
---|
10 | /** Abstract class implementing a scene traversal for rendering.
|
---|
11 | */
|
---|
12 | class StopAndWaitTraverser: public RenderTraverser
|
---|
13 | {
|
---|
14 | public:
|
---|
15 |
|
---|
16 | StopAndWaitTraverser();
|
---|
17 |
|
---|
18 | int GetType() const { return STOP_AND_WAIT; }
|
---|
19 |
|
---|
20 |
|
---|
21 | protected:
|
---|
22 | /** Traverses and renders the scene with the specified method
|
---|
23 | */
|
---|
24 | virtual void Traverse();
|
---|
25 |
|
---|
26 | };
|
---|
27 |
|
---|
28 | }
|
---|
29 |
|
---|
30 | #endif // __STOPANDWAITTRAVERSER_H |
---|
Note: See
TracBrowser
for help on using the repository browser.