summaryrefslogtreecommitdiff
path: root/src/openglgraphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/openglgraphics.h')
-rw-r--r--src/openglgraphics.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/openglgraphics.h b/src/openglgraphics.h
index b342d9e5..1494ce52 100644
--- a/src/openglgraphics.h
+++ b/src/openglgraphics.h
@@ -80,7 +80,10 @@ class OpenGLGraphics final : public Graphics
* Draw a pattern based on a rescaled version of the given image...
*/
void drawRescaledImagePattern(const Image *image,
- int x, int y, int w, int h,
+ int srcX, int srcY,
+ int srcW, int srcH,
+ int dstX, int dstY,
+ int dstW, int dstH,
int scaledWidth, int scaledHeight) override;
void updateScreen() override;