diff options
Diffstat (limited to 'src/render/graphics.h')
-rw-r--r-- | src/render/graphics.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/render/graphics.h b/src/render/graphics.h index d6860d621..d6f74d854 100644 --- a/src/render/graphics.h +++ b/src/render/graphics.h @@ -303,27 +303,12 @@ class Graphics notfinal virtual void setColor(const Color &color) { mColor = color; - mColor2 = color; - mAlpha = (color.a != 255); - } - - void setColor2(const Color &color) - { mColor2 = color; } - - virtual void setColorAll(const Color &color, - const Color &color2) - { - mColor = color; - mColor2 = color2; mAlpha = (color.a != 255); } const Color &getColor() const { return mColor; } - const Color &getColor2() const - { return mColor2; } - #ifdef DEBUG_DRAW_CALLS virtual unsigned int getDrawCalls() const { return 0; } @@ -536,7 +521,6 @@ class Graphics notfinal bool mSync; int mScale; Color mColor; - Color mColor2; }; extern Graphics *mainGraphics; |