Kaydet (Commit) 8e4defe4 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

fix Wunused-private-field

Change-Id: Ia708cc3cccd86257e08aa916d24733ca6769e723
üst 9dc88362
...@@ -253,11 +253,15 @@ private: ...@@ -253,11 +253,15 @@ private:
GLXPixmap maLeavingPixmapGL; GLXPixmap maLeavingPixmapGL;
GLXPixmap maEnteringPixmapGL; GLXPixmap maEnteringPixmapGL;
#endif #endif
#if defined( UNX ) && !defined( MACOSX )
bool mbRestoreSync; bool mbRestoreSync;
#endif
bool mbUseLeavingPixmap; bool mbUseLeavingPixmap;
bool mbUseEnteringPixmap; bool mbUseEnteringPixmap;
#if defined( GLX_EXT_texture_from_pixmap )
bool mbFreeLeavingPixmap; bool mbFreeLeavingPixmap;
bool mbFreeEnteringPixmap; bool mbFreeEnteringPixmap;
#endif
#if defined( UNX ) && !defined( MACOSX ) #if defined( UNX ) && !defined( MACOSX )
Pixmap maLeavingPixmap; Pixmap maLeavingPixmap;
Pixmap maEnteringPixmap; Pixmap maEnteringPixmap;
...@@ -1354,11 +1358,15 @@ OGLTransitionerImpl::OGLTransitionerImpl() ...@@ -1354,11 +1358,15 @@ OGLTransitionerImpl::OGLTransitionerImpl()
, maLeavingPixmapGL(0) , maLeavingPixmapGL(0)
, maEnteringPixmapGL(0) , maEnteringPixmapGL(0)
#endif #endif
#if defined( UNX ) && !defined( MACOSX )
, mbRestoreSync(false) , mbRestoreSync(false)
#endif
, mbUseLeavingPixmap(false) , mbUseLeavingPixmap(false)
, mbUseEnteringPixmap(false) , mbUseEnteringPixmap(false)
#if defined( GLX_EXT_texture_from_pixmap )
, mbFreeLeavingPixmap(false) , mbFreeLeavingPixmap(false)
, mbFreeEnteringPixmap(false) , mbFreeEnteringPixmap(false)
#endif
#if defined( UNX ) && !defined( MACOSX ) #if defined( UNX ) && !defined( MACOSX )
, maLeavingPixmap(0) , maLeavingPixmap(0)
, maEnteringPixmap(0) , maEnteringPixmap(0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment