Added constructor argument to ShadeModel

This commit is contained in:
Robert Osfield
2007-04-05 16:12:10 +00:00
parent 561dc02da5
commit 6c12c71337
4 changed files with 17 additions and 16 deletions

View File

@@ -15,9 +15,9 @@
using namespace osg;
ShadeModel::ShadeModel()
ShadeModel::ShadeModel(Mode mode):
_mode(mode)
{
_mode = SMOOTH;
}