Fixed VS warning

This commit is contained in:
Robert Osfield
2009-10-17 11:14:03 +00:00
parent 37b77a2665
commit 73ae1637c0
2 changed files with 7 additions and 2 deletions

View File

@@ -30,6 +30,10 @@ class OSG_EXPORT GLBeginEndAdapter
GLBeginEndAdapter(State* state=0);
void setState(State* state) { _state = state; }
State* setState() { return _state; }
const State* setState() const { return _state; }
enum MatrixMode
{
APPLY_LOCAL_MATRICES_TO_VERTICES,