summaryrefslogtreecommitdiff
path: root/src/mobileopenglgraphics.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-12-26 17:00:20 +0300
committerAndrei Karas <akaras@inbox.ru>2012-12-27 23:15:04 +0300
commit53db1412f7d6e29e9e1cfdb272a40ebb30ba1fe6 (patch)
treeaaeb9cb039c8a992d5b82361279f17d7518ad3c3 /src/mobileopenglgraphics.h
parentc8465553c8a3d86dc1dda153e94f40331aa687d1 (diff)
downloadplus-53db1412f7d6e29e9e1cfdb272a40ebb30ba1fe6.tar.gz
plus-53db1412f7d6e29e9e1cfdb272a40ebb30ba1fe6.tar.bz2
plus-53db1412f7d6e29e9e1cfdb272a40ebb30ba1fe6.tar.xz
plus-53db1412f7d6e29e9e1cfdb272a40ebb30ba1fe6.zip
Move setColor in graphics classes from cpp to h.
Diffstat (limited to 'src/mobileopenglgraphics.h')
-rw-r--r--src/mobileopenglgraphics.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mobileopenglgraphics.h b/src/mobileopenglgraphics.h
index ba03aee99..12b244996 100644
--- a/src/mobileopenglgraphics.h
+++ b/src/mobileopenglgraphics.h
@@ -125,7 +125,11 @@ class MobileOpenGLGraphics final : public Graphics
void popClipArea();
- void setColor(const gcn::Color &color);
+ void setColor(const gcn::Color &color)
+ {
+ mColor = color;
+ mColorAlpha = (color.a != 255);
+ }
void drawPoint(int x, int y);