summaryrefslogtreecommitdiff
path: root/src/render
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-10-18 16:55:30 +0300
committerAndrei Karas <akaras@inbox.ru>2013-10-19 15:12:21 +0300
commitb74a08cd7a7818b355bcc99df519d354a7ae903a (patch)
tree76a275af187cad62c0a4e28260d0ccc6bc94cb1a /src/render
parent44b1a218214e56f07a5a55901b33761f0845979e (diff)
downloadplus-b74a08cd7a7818b355bcc99df519d354a7ae903a.tar.gz
plus-b74a08cd7a7818b355bcc99df519d354a7ae903a.tar.bz2
plus-b74a08cd7a7818b355bcc99df519d354a7ae903a.tar.xz
plus-b74a08cd7a7818b355bcc99df519d354a7ae903a.zip
fix const in declaration in mobileopenglgraphics.
Diffstat (limited to 'src/render')
-rw-r--r--src/render/mobileopenglgraphics.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/mobileopenglgraphics.h b/src/render/mobileopenglgraphics.h
index 5e97dc6d1..748302221 100644
--- a/src/render/mobileopenglgraphics.h
+++ b/src/render/mobileopenglgraphics.h
@@ -203,10 +203,10 @@ class MobileOpenGLGraphics final : public Graphics
void setTexturingAndBlending(const bool enable);
- void debugBindTexture(const Image *image);
+ void debugBindTexture(const Image *const image);
private:
- void inline setColorAlpha(float alpha);
+ void inline setColorAlpha(const float alpha);
void inline restoreColor();