diff options
Diffstat (limited to 'src/render/nullopenglgraphics.cpp')
-rw-r--r-- | src/render/nullopenglgraphics.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/render/nullopenglgraphics.cpp b/src/render/nullopenglgraphics.cpp index 0bee724ee..ab1291233 100644 --- a/src/render/nullopenglgraphics.cpp +++ b/src/render/nullopenglgraphics.cpp @@ -166,6 +166,21 @@ bool NullOpenGLGraphics::drawImage2(const Image *const image, return true; } +void NullOpenGLGraphics::drawImageCached(const Image *const image, + int x, int y) +{ +} + +void NullOpenGLGraphics::drawPatternCached(const Image *const image, + const int x, const int y, + const int w, const int h) +{ +} + +void NullOpenGLGraphics::completeCache() +{ +} + bool NullOpenGLGraphics::drawRescaledImage(const Image *const image, int srcX, int srcY, int dstX, int dstY, |