diff options
Diffstat (limited to 'src/mobileopenglgraphics.h')
-rw-r--r-- | src/mobileopenglgraphics.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mobileopenglgraphics.h b/src/mobileopenglgraphics.h index 78d24d5fc..ad630c6b7 100644 --- a/src/mobileopenglgraphics.h +++ b/src/mobileopenglgraphics.h @@ -95,14 +95,34 @@ class MobileOpenGLGraphics final : public Graphics const int x, const int y, const int w, const int h) const override; + void calcImagePattern(ImageVertexes *const vert, + const Image *const image, + const int x, const int y, + const int w, const int h) const override; + + void calcImagePattern(ImageCollection *const vert, + const Image *const image, + const int x, const int y, + const int w, const int h) const override; + void calcTile(ImageVertexes *const vert, const Image *const image, int x, int y) const override; + void drawTile(const ImageCollection *const vertCol); + + void calcTile(ImageCollection *const vertCol, + const Image *const image, int x, int y) override; + void drawTile(const ImageVertexes *const vert) override; void drawImagePattern2(const GraphicsVertexes *const vert, const Image *const image) override; + bool calcWindow(ImageCollection *const vertCol, + const int x, const int y, + const int w, const int h, + const ImageRect &imgRect); + void updateScreen() override; void _beginDraw(); |