diff options
Diffstat (limited to 'backends/graphics/opengl/texture.h')
-rw-r--r-- | backends/graphics/opengl/texture.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/backends/graphics/opengl/texture.h b/backends/graphics/opengl/texture.h index b16faabd3f..8357f29d0e 100644 --- a/backends/graphics/opengl/texture.h +++ b/backends/graphics/opengl/texture.h @@ -194,17 +194,6 @@ public: virtual void *getPalette() { return 0; } virtual const void *getPalette() const { return 0; } - - /** - * Query texture related OpenGL information from the context. This only - * queries the maximum texture size for now. - */ - static void queryTextureInformation(); - - /** - * @return Return the maximum texture dimensions supported. - */ - static GLint getMaximumTextureSize() { return _maxTextureSize; } protected: virtual void updateTexture(); @@ -220,8 +209,6 @@ private: bool _allDirty; Common::Rect _dirtyArea; void clearDirty() { _allDirty = false; _dirtyArea = Common::Rect(); } - - static GLint _maxTextureSize; }; class TextureCLUT8 : public Texture { |