diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-12-26 17:00:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-12-27 23:15:04 +0300 |
commit | 53db1412f7d6e29e9e1cfdb272a40ebb30ba1fe6 (patch) | |
tree | aaeb9cb039c8a992d5b82361279f17d7518ad3c3 /src/mobileopenglgraphics.cpp | |
parent | c8465553c8a3d86dc1dda153e94f40331aa687d1 (diff) | |
download | plus-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.cpp')
-rw-r--r-- | src/mobileopenglgraphics.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mobileopenglgraphics.cpp b/src/mobileopenglgraphics.cpp index cbd1a8720..53b97f1d5 100644 --- a/src/mobileopenglgraphics.cpp +++ b/src/mobileopenglgraphics.cpp @@ -978,12 +978,6 @@ void MobileOpenGLGraphics::popClipArea() clipArea.width, clipArea.height); } -void MobileOpenGLGraphics::setColor(const gcn::Color& color) -{ - mColor = color; - mColorAlpha = (color.a != 255); -} - #ifdef ANDROID void MobileOpenGLGraphics::drawPoint(int x A_UNUSED, int y A_UNUSED) #else |