aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authordhewg2011-04-05 15:14:58 +0200
committerdhewg2011-04-05 15:16:07 +0200
commit0adfe7296664b2bd7edaf9b1e351c069631addc4 (patch)
tree73d2b5237b9e0a7031d15d514c3344dbe3785d9c /backends
parent4440aa431070897215b8b5b588aefe8eeb9b4be2 (diff)
downloadscummvm-rg350-0adfe7296664b2bd7edaf9b1e351c069631addc4.tar.gz
scummvm-rg350-0adfe7296664b2bd7edaf9b1e351c069631addc4.tar.bz2
scummvm-rg350-0adfe7296664b2bd7edaf9b1e351c069631addc4.zip
ANDROID: Remove commented workarounds for Nexus 1
Reports suggest that its working and not required
Diffstat (limited to 'backends')
-rw-r--r--backends/platform/android/gfx.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/backends/platform/android/gfx.cpp b/backends/platform/android/gfx.cpp
index 19cfd7f5a3..ea0f556364 100644
--- a/backends/platform/android/gfx.cpp
+++ b/backends/platform/android/gfx.cpp
@@ -617,10 +617,6 @@ void OSystem_Android::clearOverlay() {
GLTHREADCHECK;
_overlay_texture->fillBuffer(0);
-
- // breaks more than it fixes, disabled for now
- // Shouldn't need this, but works around a 'blank screen' bug on Nexus1
- //updateScreen();
}
void OSystem_Android::grabOverlay(OverlayColor *buf, int pitch) {
@@ -650,9 +646,6 @@ void OSystem_Android::copyRectToOverlay(const OverlayColor *buf, int pitch,
// This 'pitch' is pixels not bytes
_overlay_texture->updateBuffer(x, y, w, h, buf, pitch * sizeof(buf[0]));
-
- // Shouldn't need this, but works around a 'blank screen' bug on Nexus1?
- //updateScreen();
}
int16 OSystem_Android::getOverlayHeight() {