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:
GLXPixmap maLeavingPixmapGL;
GLXPixmap maEnteringPixmapGL;
#endif
#if defined( UNX ) && !defined( MACOSX )
bool mbRestoreSync;
#endif
bool mbUseLeavingPixmap;
bool mbUseEnteringPixmap;
#if defined( GLX_EXT_texture_from_pixmap )
bool mbFreeLeavingPixmap;
bool mbFreeEnteringPixmap;
#endif
#if defined( UNX ) && !defined( MACOSX )
Pixmap maLeavingPixmap;
Pixmap maEnteringPixmap;
......@@ -1354,11 +1358,15 @@ OGLTransitionerImpl::OGLTransitionerImpl()
, maLeavingPixmapGL(0)
, maEnteringPixmapGL(0)
#endif
#if defined( UNX ) && !defined( MACOSX )
, mbRestoreSync(false)
#endif
, mbUseLeavingPixmap(false)
, mbUseEnteringPixmap(false)
#if defined( GLX_EXT_texture_from_pixmap )
, mbFreeLeavingPixmap(false)
, mbFreeEnteringPixmap(false)
#endif
#if defined( UNX ) && !defined( MACOSX )
, maLeavingPixmap(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