OpenSceneGraph/include/osgTerrain/GeometryTechnique

118 lines
3.8 KiB
Plaintext
Raw Normal View History

/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
*
* This library is open source and may be redistributed and/or modified under
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
* (at your option) any later version. The full license is in LICENSE file
* included with this distribution, and on the openscenegraph.org website.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* OpenSceneGraph Public License for more details.
*/
#ifndef OSGTERRAIN_GEOMETRYTECHNIQUE
#define OSGTERRAIN_GEOMETRYTECHNIQUE 1
#include <osg/MatrixTransform>
#include <osg/Geode>
#include <osg/Geometry>
#include <osgTerrain/TerrainTechnique>
#include <osgTerrain/Locator>
namespace osgTerrain {
2007-04-17 03:34:25 +08:00
class OSGTERRAIN_EXPORT GeometryTechnique : public TerrainTechnique
{
public:
GeometryTechnique();
/** Copy constructor using CopyOp to manage deep vs shallow copy.*/
GeometryTechnique(const GeometryTechnique&,const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY);
META_Object(osgTerrain, GeometryTechnique);
2007-04-17 03:34:25 +08:00
virtual void init();
virtual Locator* computeMasterLocator();
2007-08-16 23:29:50 +08:00
virtual osg::Vec3d computeCenterModel(Locator* masterLocator);
virtual void generateGeometry(Locator* masterLocator, const osg::Vec3d& centerModel);
virtual void applyColorLayers();
virtual void applyTransparency();
virtual void smoothGeometry();
2007-04-17 03:34:25 +08:00
virtual void update(osgUtil::UpdateVisitor* nv);
virtual void cull(osgUtil::CullVisitor* nv);
/** Traverse the terain subgraph.*/
virtual void traverse(osg::NodeVisitor& nv);
2007-04-17 03:34:25 +08:00
virtual void cleanSceneGraph();
void setFilterBias(float filterBias);
float getFilterBias() const { return _filterBias; }
2007-06-18 20:10:46 +08:00
void setFilterWidth(float filterWidth);
float getFilterWidth() const { return _filterWidth; }
void setFilterMatrix(const osg::Matrix3& matrix);
osg::Matrix3& getFilterMatrix() { return _filterMatrix; }
const osg::Matrix3& getFilterMatrix() const { return _filterMatrix; }
enum FilterType
{
GAUSSIAN,
SMOOTH,
SHARPEN
};
void setFilterMatrixAs(FilterType filterType);
From Jason Beverage, "I posted a question on osg users about resources not being properly released when using osgTerrain databases and multiple viewers are used a few weeks ago and I've found that at least part of the problem comes down to the fact that the nodes that are traversed by the GeometryTechnique are never actually added to the scene graph, and thus don't have releaseGLObjects called on them. I'm submitting a few changes that takes care of this by allowing the TerrainTechnique to provide a releaseGLObjects implementation. I've applied these changes in osgEarth and this example program no longer crashes on the second run, although I get corrupt geometry (see attached shot) which could be down to a driver issue. If I increment the context ID for the second viewer, I no longer get the corrupt geometry. The attached changes are against OpenSceneGraph 2.8.2. //Sample program. Run against an osgEarth or VPB database based on osgTerrain. #include <osgDB/ReadFile> #include <osgViewer/Viewer> int main(int argc, char** argv) { osg::ArgumentParser arguments(&argc,argv); osgViewer::Viewer* viewer = new osgViewer::Viewer(); viewer->setUpViewInWindow(100, 100,500,500); osg::ref_ptr<osg::Node> loadedModel = osgDB::readNodeFiles(arguments); viewer->setSceneData( loadedModel.get() ); viewer->run(); delete viewer; viewer = new osgViewer::Viewer(); viewer->setUpViewInWindow(100,100,500,500); loadedModel = osgDB::readNodeFiles(arguments); viewer->setSceneData( loadedModel.get() ); viewer->run(); delete viewer; }"
2009-11-20 19:08:40 +08:00
/** If State is non-zero, this function releases any associated OpenGL objects for
* the specified graphics context. Otherwise, releases OpenGL objects
* for all graphics contexts. */
virtual void releaseGLObjects(osg::State* = 0) const;
2007-04-17 03:34:25 +08:00
protected:
2007-04-17 03:34:25 +08:00
virtual ~GeometryTechnique();
struct BufferData
{
osg::ref_ptr<osg::MatrixTransform> _transform;
osg::ref_ptr<osg::Geode> _geode;
osg::ref_ptr<osg::Geometry> _geometry;
};
unsigned int _currentReadOnlyBuffer;
unsigned int _currentWriteBuffer;
2007-04-17 03:34:25 +08:00
BufferData _bufferData[2];
void swapBuffers();
inline BufferData& getReadOnlyBuffer() { return _bufferData[_currentReadOnlyBuffer]; }
inline BufferData& getWriteBuffer() { return _bufferData[_currentWriteBuffer]; }
2007-06-18 20:10:46 +08:00
float _filterBias;
osg::ref_ptr<osg::Uniform> _filterBiasUniform;
2007-06-18 20:10:46 +08:00
float _filterWidth;
osg::ref_ptr<osg::Uniform> _filterWidthUniform;
osg::Matrix3 _filterMatrix;
osg::ref_ptr<osg::Uniform> _filterMatrixUniform;
2007-04-17 03:34:25 +08:00
};
}
#endif