2018-05-31 21:45:37 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2018 Robert Osfield
|
2009-04-27 19:02:18 +08:00
|
|
|
*
|
2018-05-31 21:45:37 +08:00
|
|
|
* 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.
|
2012-03-22 01:36:20 +08:00
|
|
|
*
|
2018-05-31 21:45:37 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2009-04-27 19:02:18 +08:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2012-03-22 01:36:20 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2018-05-31 21:45:37 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
2009-04-27 19:02:18 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OSG_COMPILESLIDECALLBACK
|
|
|
|
#define OSG_COMPILESLIDECALLBACK 1
|
|
|
|
|
|
|
|
#include <osgViewer/Viewer>
|
2009-06-25 00:03:49 +08:00
|
|
|
#include <osgPresentation/Export>
|
2009-04-27 19:02:18 +08:00
|
|
|
|
2009-06-25 00:03:49 +08:00
|
|
|
namespace osgPresentation {
|
2009-04-27 19:02:18 +08:00
|
|
|
|
2009-06-25 00:03:49 +08:00
|
|
|
class OSGPRESENTATION_EXPORT CompileSlideCallback : public osg::Camera::DrawCallback
|
2009-04-27 19:02:18 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
CompileSlideCallback():
|
|
|
|
_needCompile(false),
|
|
|
|
_frameNumber(0) {}
|
|
|
|
|
|
|
|
virtual void operator()(const osg::Camera& camera) const;
|
|
|
|
|
|
|
|
void needCompile(osg::Node* node) { _needCompile=true; _sceneToCompile = node; }
|
|
|
|
|
|
|
|
protected:
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
virtual ~CompileSlideCallback() {}
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
mutable bool _needCompile;
|
2010-12-23 04:11:05 +08:00
|
|
|
mutable unsigned int _frameNumber;
|
2009-04-27 19:02:18 +08:00
|
|
|
osg::ref_ptr<osg::Node> _sceneToCompile;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|