diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-06-13 12:48:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-06-13 12:48:34 +0300 |
commit | 81d2b31c5d8e8fb22e9b0635c003127e07c3e3f0 (patch) | |
tree | 606ca8634c99dfc6c6e0010e6f716b77bf2e13eb /src/render/modernopenglgraphics.cpp | |
parent | be74509b31b26e714c6b380e17ed3935ec0b6cf0 (diff) | |
download | plus-81d2b31c5d8e8fb22e9b0635c003127e07c3e3f0.tar.gz plus-81d2b31c5d8e8fb22e9b0635c003127e07c3e3f0.tar.bz2 plus-81d2b31c5d8e8fb22e9b0635c003127e07c3e3f0.tar.xz plus-81d2b31c5d8e8fb22e9b0635c003127e07c3e3f0.zip |
Ignore for now "cached" functions in modernopengl.
Diffstat (limited to 'src/render/modernopenglgraphics.cpp')
-rw-r--r-- | src/render/modernopenglgraphics.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/render/modernopenglgraphics.cpp b/src/render/modernopenglgraphics.cpp index b2e33cbc9..fd9581285 100644 --- a/src/render/modernopenglgraphics.cpp +++ b/src/render/modernopenglgraphics.cpp @@ -337,14 +337,16 @@ bool ModernOpenGLGraphics::drawImageInline(const Image *const image, return true; } -void ModernOpenGLGraphics::drawImageCached(const Image *const image, - int x, int y) +void ModernOpenGLGraphics::drawImageCached(const Image *const image A_UNUSED, + int A_UNUSED x, int y A_UNUSED) { } -void ModernOpenGLGraphics::drawPatternCached(const Image *const image, - const int x, const int y, - const int w, const int h) +void ModernOpenGLGraphics::drawPatternCached(const Image *const image A_UNUSED, + const int x A_UNUSED, + const int y A_UNUSED, + const int w A_UNUSED, + const int h A_UNUSED) { } |