aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/gp2x/gp2x-common.h
diff options
context:
space:
mode:
authorMax Horn2010-06-02 00:52:57 +0000
committerMax Horn2010-06-02 00:52:57 +0000
commit767edc91faebdc1a60e5c8b3764b169dc9807ea5 (patch)
tree838b131043f177882fe03a7832124e0f8f53b350 /backends/platform/gp2x/gp2x-common.h
parentc4c63223cc45ce192f8b03f27fff56fcdf56a502 (diff)
downloadscummvm-rg350-767edc91faebdc1a60e5c8b3764b169dc9807ea5.tar.gz
scummvm-rg350-767edc91faebdc1a60e5c8b3764b169dc9807ea5.tar.bz2
scummvm-rg350-767edc91faebdc1a60e5c8b3764b169dc9807ea5.zip
OSYSTEM: Get rid of kFeatureAutoComputeDirtyRects
svn-id: r49388
Diffstat (limited to 'backends/platform/gp2x/gp2x-common.h')
-rw-r--r--backends/platform/gp2x/gp2x-common.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/backends/platform/gp2x/gp2x-common.h b/backends/platform/gp2x/gp2x-common.h
index 8183a87300..b54e2d4d4f 100644
--- a/backends/platform/gp2x/gp2x-common.h
+++ b/backends/platform/gp2x/gp2x-common.h
@@ -192,10 +192,6 @@ protected:
Graphics::PixelFormat _overlayFormat;
enum {
- DF_WANT_RECT_OPTIM = 1 << 0
- };
-
- enum {
kTransactionNone = 0,
kTransactionActive = 1,
kTransactionRollback = 2
@@ -235,7 +231,6 @@ protected:
Graphics::Surface _framebuffer;
/** Current video mode flags (see DF_* constants) */
- uint32 _modeFlags;
bool _modeChanged;
int _screenChangeCount;
@@ -252,9 +247,6 @@ protected:
// Dirty rect management
SDL_Rect _dirtyRectList[NUM_DIRTY_RECT];
int _numDirtyRects;
- uint32 *_dirtyChecksums;
- bool _cksumValid;
- int _cksumNum;
// Keyboard mouse emulation. Disabled by fingolfin 2004-12-18.
// I am keeping the rest of the code in for now, since the joystick
@@ -351,9 +343,6 @@ protected:
Common::TimerManager *_timer;
protected:
- void addDirtyRgnAuto(const byte *buf);
- void makeChecksums(const byte *buf);
-
virtual void addDirtyRect(int x, int y, int w, int h, bool realCoordinates = false);
void drawMouse();