[glxbackend] Add default values for member variables

icc-effect-5.14.5
Martin Gräßlin 2015-01-12 08:54:25 +01:00
parent 6b0ae95b80
commit 6f0e4b2d5a
1 changed files with 7 additions and 6 deletions

View File

@ -98,12 +98,13 @@ private:
QHash<xcb_visualid_t, int> m_visualDepthHash;
std::unique_ptr<SwapEventFilter> m_swapEventFilter;
int m_bufferAge;
bool m_haveMESACopySubBuffer;
bool m_haveMESASwapControl;
bool m_haveEXTSwapControl;
bool m_haveSGISwapControl;
bool m_haveINTELSwapEvent;
bool haveSwapInterval, haveWaitSync;
bool m_haveMESACopySubBuffer = false;
bool m_haveMESASwapControl = false;
bool m_haveEXTSwapControl = false;
bool m_haveSGISwapControl = false;
bool m_haveINTELSwapEvent = false;
bool haveSwapInterval = false;
bool haveWaitSync = false;
friend class GlxTexture;
};