diff options
Diffstat (limited to 'src/render/nullopenglgraphics.cpp')
-rw-r--r-- | src/render/nullopenglgraphics.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/render/nullopenglgraphics.cpp b/src/render/nullopenglgraphics.cpp index bfe9172c8..dce5f93ee 100644 --- a/src/render/nullopenglgraphics.cpp +++ b/src/render/nullopenglgraphics.cpp @@ -157,6 +157,12 @@ bool NullOpenGLGraphics::drawImage(const Image *const image, return drawImageInline(image, dstX, dstY); } +bool NullOpenGLGraphics::copyImage(const Image *const image, + int dstX, int dstY) +{ + return drawImageInline(image, dstX, dstY); +} + bool NullOpenGLGraphics::drawImageInline(const Image *const image, int dstX, int dstY) { |