diff options
Diffstat (limited to 'src/safeopenglgraphics.h')
-rw-r--r-- | src/safeopenglgraphics.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/safeopenglgraphics.h b/src/safeopenglgraphics.h index a1d744282..a6f22182c 100644 --- a/src/safeopenglgraphics.h +++ b/src/safeopenglgraphics.h @@ -141,7 +141,15 @@ class SafeOpenGLGraphics : public Graphics void setTexturingAndBlending(bool enable); private: - bool mAlpha, mTexture; + void inline setColorAlpha(float alpha); + + void inline restoreColor(); + + bool mAlpha; + bool mTexture; + bool mIsByteColor; + gcn::Color mByteColor; + float mFloatColor; bool mColorAlpha; FBOInfo mFbo; }; |