Removed hardware down sampling hack from GeoemtryTechnique and replaced with Terrain::g/setSampleRatio()
usage.
This commit is contained in:
@@ -17,12 +17,14 @@
|
||||
using namespace osg;
|
||||
using namespace osgTerrain;
|
||||
|
||||
Terrain::Terrain()
|
||||
Terrain::Terrain():
|
||||
_sampleRatio(1.0)
|
||||
{
|
||||
}
|
||||
|
||||
Terrain::Terrain(const Terrain& ts, const osg::CopyOp& copyop):
|
||||
osg::Group(ts,copyop)
|
||||
osg::Group(ts,copyop),
|
||||
_sampleRatio(ts._sampleRatio)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user