You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
839 B
C++
34 lines
839 B
C++
#include "additivelayer.hpp"
|
|
|
|
#include <osg/BlendFunc>
|
|
#include <osg/StateSet>
|
|
|
|
#include "myguirendermanager.hpp"
|
|
|
|
namespace osgMyGUI
|
|
{
|
|
|
|
AdditiveLayer::AdditiveLayer()
|
|
{
|
|
mStateSet = new osg::StateSet;
|
|
mStateSet->setAttributeAndModes(new osg::BlendFunc(osg::BlendFunc::SRC_ALPHA, osg::BlendFunc::ONE));
|
|
}
|
|
|
|
AdditiveLayer::~AdditiveLayer()
|
|
{
|
|
// defined in .cpp file since we can't delete incomplete types
|
|
}
|
|
|
|
void AdditiveLayer::renderToTarget(MyGUI::IRenderTarget *_target, bool _update)
|
|
{
|
|
StateInjectableRenderTarget* injectableTarget = static_cast<StateInjectableRenderTarget*>(_target);
|
|
|
|
injectableTarget->setInjectState(mStateSet.get());
|
|
|
|
MyGUI::OverlappedLayer::renderToTarget(_target, _update);
|
|
|
|
injectableTarget->setInjectState(nullptr);
|
|
}
|
|
|
|
}
|