From: <de...@us...> - 2003-12-28 19:56:45
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Include In directory sc8-pr-cvs1:/tmp/cvs-serv25963 Modified Files: LogoScreen.h Log Message: see CHANGES.current Index: LogoScreen.h =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Include/LogoScreen.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** LogoScreen.h 4 May 2003 11:30:10 -0000 1.7 --- LogoScreen.h 28 Dec 2003 19:56:42 -0000 1.8 *************** *** 29,34 **** #include "BaseScreen.h" ! struct SDL_Surface; /** --- 29,45 ---- #include "BaseScreen.h" + #include <osg/ref_ptr> + + namespace osg { + class Texture2D; + }; + + namespace osgUtil { + class SceneView; + }; ! ! ! //struct SDL_Surface; /** *************** *** 47,55 **** virtual void onRender(); ! virtual void onUpdate(double dt) {; } ! private: ! SDL_Surface * m_image; int m_width, m_height; }; --- 58,67 ---- virtual void onRender(); ! virtual void onUpdate(double dt); private: ! osg::ref_ptr<osgUtil::SceneView> m_LogoView; ! osg::ref_ptr<osg::Texture2D> m_Texture; ! //SDL_Surface * m_image; int m_width, m_height; }; |