aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/android/texture.h
diff options
context:
space:
mode:
authordhewg2011-03-12 09:20:21 +0100
committerdhewg2011-03-12 09:36:22 +0100
commit2259f922f8c2a7b2839edf8f4ae9bbe17c1016ab (patch)
tree0f0cf0f9b3a3df2adbc4a91a6bcac7290303b00f /backends/platform/android/texture.h
parent7fe487f9cc4cb4b7ee6a121f33b9d284bfc15ed7 (diff)
downloadscummvm-rg350-2259f922f8c2a7b2839edf8f4ae9bbe17c1016ab.tar.gz
scummvm-rg350-2259f922f8c2a7b2839edf8f4ae9bbe17c1016ab.tar.bz2
scummvm-rg350-2259f922f8c2a7b2839edf8f4ae9bbe17c1016ab.zip
ANDROID: Remove redundant variable
Diffstat (limited to 'backends/platform/android/texture.h')
-rw-r--r--backends/platform/android/texture.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/backends/platform/android/texture.h b/backends/platform/android/texture.h
index f00a589875..02cb0c71fb 100644
--- a/backends/platform/android/texture.h
+++ b/backends/platform/android/texture.h
@@ -41,7 +41,7 @@ public:
static void initGLExtensions();
protected:
- GLESTexture(byte bytesPerPixel, GLenum glFormat, GLenum glType,
+ GLESTexture(GLenum glFormat, GLenum glType,
Graphics::PixelFormat pixelFormat);
public:
@@ -130,7 +130,6 @@ protected:
}
}
- byte _bytesPerPixel;
GLenum _glFormat;
GLenum _glType;
@@ -182,7 +181,7 @@ public:
class GLESPaletteTexture : public GLESTexture {
protected:
- GLESPaletteTexture(byte bytesPerPixel, GLenum glFormat, GLenum glType,
+ GLESPaletteTexture(GLenum glFormat, GLenum glType,
Graphics::PixelFormat palettePixelFormat);
public: