diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-14 16:59:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-14 16:59:21 +0300 |
commit | d9a77eb8ac5d507665cbf8b20f5d8187148ebfd1 (patch) | |
tree | db2f8a25d466ce6aa5ca1747216156f7869a06d1 /src/render/nullopenglgraphics.h | |
parent | 2851324a6847efa7ea6f556941b369e9e304dc23 (diff) | |
download | plus-d9a77eb8ac5d507665cbf8b20f5d8187148ebfd1.tar.gz plus-d9a77eb8ac5d507665cbf8b20f5d8187148ebfd1.tar.bz2 plus-d9a77eb8ac5d507665cbf8b20f5d8187148ebfd1.tar.xz plus-d9a77eb8ac5d507665cbf8b20f5d8187148ebfd1.zip |
Improve a bit separate images drawing.
Diffstat (limited to 'src/render/nullopenglgraphics.h')
-rw-r--r-- | src/render/nullopenglgraphics.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/render/nullopenglgraphics.h b/src/render/nullopenglgraphics.h index cdd9df0f6..620baa59d 100644 --- a/src/render/nullopenglgraphics.h +++ b/src/render/nullopenglgraphics.h @@ -191,6 +191,12 @@ class NullOpenGLGraphics final : public Graphics void updateTextureFormat(); + bool drawImage2(const Image *const image, + int srcX, int srcY, + int dstX, int dstY, + const int width, const int height, + const bool useColor) override final; + #ifdef DEBUG_DRAW_CALLS unsigned int getDrawCalls() const { return mLastDrawCalls; } @@ -205,12 +211,6 @@ class NullOpenGLGraphics final : public Graphics static GLuint mLastImage; protected: - bool drawImage2(const Image *const image, - int srcX, int srcY, - int dstX, int dstY, - const int width, const int height, - const bool useColor) override final; - void setTexturingAndBlending(const bool enable); void debugBindTexture(const Image *const image); |