More clean up for synch with 0.8.42

This commit is contained in:
Don BURNS
2001-09-19 21:19:47 +00:00
parent 2462c6273c
commit 7e81f6cfa6
292 changed files with 39673 additions and 0 deletions

19
src/osg/FrontFace.cpp Normal file
View File

@@ -0,0 +1,19 @@
#include "osg/GL"
#include "osg/FrontFace"
using namespace osg;
FrontFace::FrontFace()
{
_mode = COUNTER_CLOCKWISE;
}
FrontFace::~FrontFace()
{
}
void FrontFace::apply(State&) const
{
glFrontFace((GLenum)_mode);
}