[Gcblue-commits] gcb_wx/src/graphics tcSceneHandler.cpp,NONE,1.1 tcscenehandler.cpp,1.1,NONE
Status: Alpha
Brought to you by:
ddcforge
|
From: Xavi <xr...@us...> - 2004-04-04 21:59:55
|
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(); } } |