Update of /cvsroot/gcblue/gcb_wx/src/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24153
Added Files:
tcSceneHandler.cpp
Removed Files:
tcscenehandler.cpp
Log Message:
+ changed lowercase tcscenehandler.cpp to tcSceneHandler.cpp, according to the includes from other files and the name of the class
--- tcscenehandler.cpp DELETED ---
--- NEW FILE: tcSceneHandler.cpp ---
#include "wx/wx.h"
#include "wx/msw/private.h" // for MS Windows specific definitions
#include "tcscenehandler.h"
#include <graphics/tcGraphicsEngine.h>
#include <osgProducer/OsgSceneHandler>
tcSceneHandler::tcSceneHandler(osg::DisplaySettings *ds)
: osgProducer::OsgSceneHandler(ds)
{
graphicsEngine = NULL;
}
tcSceneHandler::~tcSceneHandler()
{
}
void tcSceneHandler::drawImplementation(Producer::Camera& camera)
{
if (graphicsEngine)
{
graphicsEngine->RenderAll();
}
}
|