Added ProxyLayer support into osgTerrain plugin

This commit is contained in:
Robert Osfield
2007-08-29 12:18:41 +00:00
parent 63c283ad03
commit 2f895b839e
5 changed files with 75 additions and 5 deletions

View File

@@ -326,7 +326,7 @@ unsigned int HeightFieldLayer::getModifiedCount() const
/////////////////////////////////////////////////////////////////////////////
//
// HieghtFieldLayer
// CompositeLayer
//
CompositeLayer::CompositeLayer()
{
@@ -342,3 +342,21 @@ void CompositeLayer::clear()
{
_layers.clear();
}
/////////////////////////////////////////////////////////////////////////////
//
// ProxyLayer
//
ProxyLayer::ProxyLayer()
{
}
ProxyLayer::ProxyLayer(const ProxyLayer& proxyLayer,const osg::CopyOp& copyop):
Layer(proxyLayer,copyop)
{
}
ProxyLayer::~ProxyLayer()
{
}