Moved CameraCullCallback into ShadowTechnique scope to make it more resusable between various Techniques
This commit is contained in:
@@ -17,6 +17,19 @@
|
||||
|
||||
using namespace osgShadow;
|
||||
|
||||
ShadowTechnique::CameraCullCallback::CameraCullCallback(ShadowTechnique* st):
|
||||
_shadowTechnique(st)
|
||||
{
|
||||
}
|
||||
|
||||
void ShadowTechnique::CameraCullCallback::operator()(osg::Node*, osg::NodeVisitor* nv)
|
||||
{
|
||||
if (_shadowTechnique->getShadowedScene())
|
||||
{
|
||||
_shadowTechnique->getShadowedScene()->osg::Group::traverse(*nv);
|
||||
}
|
||||
}
|
||||
|
||||
ShadowTechnique::ShadowTechnique():
|
||||
_shadowedScene(0),
|
||||
_dirty(true)
|
||||
|
||||
@@ -19,25 +19,6 @@
|
||||
|
||||
using namespace osgShadow;
|
||||
|
||||
class CameraCullCallback : public osg::NodeCallback
|
||||
{
|
||||
public:
|
||||
|
||||
CameraCullCallback(ShadowTexture* st):
|
||||
_shadowTexture(st)
|
||||
{
|
||||
}
|
||||
|
||||
virtual void operator()(osg::Node*, osg::NodeVisitor* nv)
|
||||
{
|
||||
_shadowTexture->getShadowedScene()->osg::Group::traverse(*nv);
|
||||
}
|
||||
|
||||
protected:
|
||||
|
||||
ShadowTexture* _shadowTexture;
|
||||
};
|
||||
|
||||
ShadowTexture::ShadowTexture():
|
||||
_textureUnit(1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user