2006-11-27 22:52:07 +08:00
|
|
|
/* -*-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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <osgViewer/CompositeViewer>
|
|
|
|
|
|
|
|
using namespace osgViewer;
|
|
|
|
|
2006-11-29 04:35:31 +08:00
|
|
|
CompositeViewer::CompositeViewer()
|
2006-11-27 22:52:07 +08:00
|
|
|
{
|
2006-11-29 19:00:02 +08:00
|
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::Viewer() not implemented yet."<<std::endl;
|
2006-11-27 22:52:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CompositeViewer::~CompositeViewer()
|
|
|
|
{
|
|
|
|
}
|
2006-11-29 19:00:02 +08:00
|
|
|
|
|
|
|
void CompositeViewer::frame()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::frame() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CompositeViewer::frameAdvance()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::frameAdvance() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CompositeViewer::frameEventTraversal()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::frameEventTraversal() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CompositeViewer::frameUpdateTraversal()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::frameUpdateTraversal() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CompositeViewer::frameCullTraversal()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::frameCullTraversal() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CompositeViewer::frameDrawTraversal()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::frameDrawTraversal() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CompositeViewer::releaseAllGLObjects()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::releaseAllGLObjects() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CompositeViewer::cleanup()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"CompositeViewer::cleanup() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|