aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/opengl/glimage.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/glimage.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/glimage.h')
-rw-r--r--engines/sword25/gfx/opengl/glimage.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/sword25/gfx/opengl/glimage.h b/engines/sword25/gfx/opengl/glimage.h
index 678a40aff4..13276798e0 100644
--- a/engines/sword25/gfx/opengl/glimage.h
+++ b/engines/sword25/gfx/opengl/glimage.h
@@ -55,9 +55,9 @@ typedef void *GLS_Sprite;
// CLASS DEFINITION
// -----------------------------------------------------------------------------
-class BS_GLImage : public BS_Image {
+class GLImage : public Image {
public:
- BS_GLImage(const Common::String &Filename, bool &Result);
+ GLImage(const Common::String &Filename, bool &Result);
/**
@brief Erzeugt ein leeres BS_GLImage
@@ -67,8 +67,8 @@ public:
@param Result gibt dem Aufrufer bekannt, ob der Konstruktor erfolgreich ausgeführt wurde. Wenn es nach dem Aufruf false enthalten sollte,
dürfen keine Methoden am Objekt aufgerufen werden und das Objekt ist sofort zu zerstören.
*/
- BS_GLImage(unsigned int Width, unsigned int Height, bool &Result);
- virtual ~BS_GLImage();
+ GLImage(unsigned int Width, unsigned int Height, bool &Result);
+ virtual ~GLImage();
virtual int GetWidth() const {
return m_Width;
@@ -76,12 +76,12 @@ public:
virtual int GetHeight() const {
return m_Height;
}
- virtual BS_GraphicEngine::COLOR_FORMATS GetColorFormat() const {
- return BS_GraphicEngine::CF_ARGB32;
+ virtual GraphicEngine::COLOR_FORMATS GetColorFormat() const {
+ return GraphicEngine::CF_ARGB32;
}
virtual bool Blit(int PosX = 0, int PosY = 0,
- int Flipping = BS_Image::FLIP_NONE,
+ int Flipping = Image::FLIP_NONE,
BS_Rect *pPartRect = NULL,
unsigned int Color = BS_ARGB(255, 255, 255, 255),
int Width = -1, int Height = -1);