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,
|
2006-11-29 19:00:02 +08:00
|
|
|
* but WITHOUT ANY WARRANTY
|
|
|
|
{
|
|
|
|
}
|
|
|
|
without even the implied warranty of
|
2006-11-27 22:52:07 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <osgViewer/Viewer>
|
|
|
|
|
|
|
|
using namespace osgViewer;
|
|
|
|
|
2006-11-29 04:35:31 +08:00
|
|
|
Viewer::Viewer()
|
2006-11-27 22:52:07 +08:00
|
|
|
{
|
2006-11-29 19:00:02 +08:00
|
|
|
osg::notify(osg::NOTICE)<<"Viewer::Viewer() not implemented yet."<<std::endl;
|
2006-11-27 22:52:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Viewer::~Viewer()
|
|
|
|
{
|
|
|
|
}
|
2006-11-29 19:00:02 +08:00
|
|
|
|
|
|
|
void Viewer::frame()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Viewer::frame() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Viewer::frameAdvance()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Viewer::frameAdvance() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Viewer::frameEventTraversal()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Viewer::frameEventTraversal() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Viewer::frameUpdateTraversal()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Viewer::frameUpdateTraversal() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Viewer::frameCullTraversal()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Viewer::frameCullTraversal() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Viewer::frameDrawTraversal()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Viewer::frameDrawTraversal() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Viewer::releaseAllGLObjects()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Viewer::releaseAllGLObjects() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Viewer::cleanup()
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Viewer::cleanup() not implemented yet."<<std::endl;
|
|
|
|
}
|
|
|
|
|