aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/window.h
diff options
context:
space:
mode:
authorStrangerke2012-06-06 08:04:33 +0200
committerStrangerke2012-06-06 08:04:33 +0200
commitf1ac5d5acdbc0349850377619d8056be22871b42 (patch)
tree6076996dd7201af5f63447e382c2600e12eb183d /engines/tony/window.h
parent334dc91e279d01b264ae7454f39faa557a250428 (diff)
downloadscummvm-rg350-f1ac5d5acdbc0349850377619d8056be22871b42.tar.gz
scummvm-rg350-f1ac5d5acdbc0349850377619d8056be22871b42.tar.bz2
scummvm-rg350-f1ac5d5acdbc0349850377619d8056be22871b42.zip
TONY: More renaming
Diffstat (limited to 'engines/tony/window.h')
-rw-r--r--engines/tony/window.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/engines/tony/window.h b/engines/tony/window.h
index 70e74eb54d..3d1199482f 100644
--- a/engines/tony/window.h
+++ b/engines/tony/window.h
@@ -45,14 +45,14 @@ private:
static byte rgb[RM_SX *RM_SY * 3];
public:
// Take a screenshot
- void GrabScreenshot(byte *lpBuf, int dezoom = 1, uint16 *lpDestBuf = NULL);
+ void grabScreenshot(byte *lpBuf, int dezoom = 1, uint16 *lpDestBuf = NULL);
};
class RMWindow {
private:
- bool Lock();
- void Unlock();
+ bool lock();
+ void unlock();
void plotSplices(const byte *lpBuf, const Common::Point &center, int x, int y);
void plotLines(const byte *lpBuf, const Common::Point &center, int x, int y);
@@ -65,14 +65,14 @@ protected:
int mskRed, mskGreen, mskBlue;
- bool m_bGrabScreenshot;
- bool m_bGrabThumbnail;
- bool m_bGrabMovie;
- uint16 *m_wThumbBuf;
+ bool _bGrabScreenshot;
+ bool _bGrabThumbnail;
+ bool _bGrabMovie;
+ uint16 *_wThumbBuf;
- void CreateBWPrecalcTable(void);
- void WipeEffect(Common::Rect &rcBoundEllipse);
- void GetNewFrameWipe(byte *lpBuf, Common::Rect &rcBoundEllipse);
+ void createBWPrecalcTable(void);
+ void wipeEffect(Common::Rect &rcBoundEllipse);
+ void getNewFrameWipe(byte *lpBuf, Common::Rect &rcBoundEllipse);
public:
RMWindow();
@@ -81,19 +81,19 @@ public:
// Initialisation
void init(/*HINSTANCE hInst*/);
void initDirectDraw(void);
- void Close(void);
+ void close(void);
// Drawing
- void Repaint(void);
+ void repaint(void);
// Switch between windowed and fullscreen
- void SwitchFullscreen(bool bFull) {}
+ void switchFullscreen(bool bFull) {}
// Reads the next frame
- void GetNewFrame(byte *lpBuf, Common::Rect *rcBoundEllipse);
+ void getNewFrame(byte *lpBuf, Common::Rect *rcBoundEllipse);
// Request a thumbnail be grabbed during the next frame
- void GrabThumbnail(uint16 *buf);
+ void grabThumbnail(uint16 *buf);
int getFps() const {
return fps;