aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/opengl/openglgfx.h
diff options
context:
space:
mode:
authorEugene Sandulenko2010-08-18 10:52:24 +0000
committerEugene Sandulenko2010-10-12 22:53:49 +0000
commit485ff15d23b3ae9545f5c9df794f1326185eae7a (patch)
tree9994c94429c09f152bd7c017b6f74961a26b2e87 /engines/sword25/gfx/opengl/openglgfx.h
parente71337861ffece83ca8fe254e411557249118d43 (diff)
downloadscummvm-rg350-485ff15d23b3ae9545f5c9df794f1326185eae7a.tar.gz
scummvm-rg350-485ff15d23b3ae9545f5c9df794f1326185eae7a.tar.bz2
scummvm-rg350-485ff15d23b3ae9545f5c9df794f1326185eae7a.zip
SWORD25: Mass-eliminating of BS_ prefix in fmv/ and gfx/
svn-id: r53258
Diffstat (limited to 'engines/sword25/gfx/opengl/openglgfx.h')
-rw-r--r--engines/sword25/gfx/opengl/openglgfx.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/sword25/gfx/opengl/openglgfx.h b/engines/sword25/gfx/opengl/openglgfx.h
index b62ecf960d..4a7994a92c 100644
--- a/engines/sword25/gfx/opengl/openglgfx.h
+++ b/engines/sword25/gfx/opengl/openglgfx.h
@@ -52,19 +52,19 @@ namespace Sword25 {
class BS_Kernel;
class BS_Service;
class BS_Resource;
-class BS_Panel;
+class Panel;
class BS_Image;
-class BS_RenderObjectManager;
+class RenderObjectManager;
// -----------------------------------------------------------------------------
// CLASS DECLARATION
// -----------------------------------------------------------------------------
-class BS_OpenGLGfx : public BS_GraphicEngine {
+class OpenGLGfx : public GraphicEngine {
public:
- BS_OpenGLGfx(BS_Kernel *pKernel);
- virtual ~BS_OpenGLGfx();
+ OpenGLGfx(BS_Kernel *pKernel);
+ virtual ~OpenGLGfx();
// Interface
// ---------
@@ -72,7 +72,7 @@ public:
virtual bool StartFrame(bool UpdateAll);
virtual bool EndFrame();
- virtual BS_RenderObjectPtr<BS_Panel> GetMainPanel();
+ virtual RenderObjectPtr<Panel> GetMainPanel();
virtual void SetVsync(bool Vsync);
virtual bool GetVsync() const;
@@ -98,9 +98,9 @@ private:
bool m_GLspritesInitialized;
byte *_backBuffer;
- BS_RenderObjectPtr<BS_Panel> m_MainPanelPtr;
+ RenderObjectPtr<Panel> m_MainPanelPtr;
- std::auto_ptr<BS_RenderObjectManager> m_RenderObjectManagerPtr;
+ std::auto_ptr<RenderObjectManager> m_RenderObjectManagerPtr;
struct DebugLine {
DebugLine(const BS_Vertex &_Start, const BS_Vertex &_End, unsigned int _Color) :