OpenSceneGraph/include/osgUtil/RenderLeaf

95 lines
2.7 KiB
Plaintext
Raw Normal View History

/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 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.
*/
2001-09-20 05:19:47 +08:00
#ifndef OSGUTIL_RENDERLEAF
#define OSGUTIL_RENDERLEAF 1
#include <osg/ref_ptr>
#include <osg/Matrix>
#include <osg/Drawable>
#include <osg/State>
#include <osgUtil/Export>
namespace osgUtil {
// Forward declare RenderGraph
2001-09-20 05:19:47 +08:00
class RenderGraph;
/** Container class for all data required for rendering of drawables.
2001-09-20 05:19:47 +08:00
*/
class OSGUTIL_EXPORT RenderLeaf : public osg::Referenced
{
public:
inline RenderLeaf(osg::Drawable* drawable,osg::RefMatrix* projection,osg::RefMatrix* modelview, float depth=0.0f):
_parent(0),
2001-09-20 05:19:47 +08:00
_drawable(drawable),
_projection(projection),
_modelview(modelview),
2001-09-20 05:19:47 +08:00
_depth(depth) {}
inline void set(osg::Drawable* drawable,osg::RefMatrix* projection,osg::RefMatrix* modelview, float depth=0.0f)
{
_parent = 0;
_drawable = drawable;
_projection = projection,
_modelview = modelview,
_depth = depth;
}
inline void reset()
{
_parent = 0;
_drawable = 0;
_projection = 0;
_modelview = 0;
_depth = 0.0f;
}
2001-09-20 05:19:47 +08:00
virtual void render(osg::State& state,RenderLeaf* previous);
/// Allow RenderGraph to change the RenderLeaf's _parent.
2002-02-04 03:18:14 +08:00
friend class osgUtil::RenderGraph;
2001-09-20 05:19:47 +08:00
public:
RenderGraph* _parent;
osg::Drawable* _drawable;
osg::ref_ptr<osg::RefMatrix> _projection;
osg::ref_ptr<osg::RefMatrix> _modelview;
float _depth;
2001-09-20 05:19:47 +08:00
private:
/// disallow creation of blank RenderLeaf as this isn't useful.
RenderLeaf():
_parent(0),
_drawable(0),
_projection(0),
_modelview(0),
2001-09-20 05:19:47 +08:00
_depth(0.0f) {}
/// disallow copy construction.
RenderLeaf(const RenderLeaf&):osg::Referenced() {}
/// disallow copy operator.
RenderLeaf& operator = (const RenderLeaf&) { return *this; }
};
}
2001-09-20 05:19:47 +08:00
#endif