Kaydet (Commit) 37a00689 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#984143 Uninitialized scalar field

Change-Id: I2940b86ce45dfc6b7399b76c84f88c5658f4a923
üst db030764
......@@ -1758,19 +1758,35 @@ void OGLTransitionerImpl::disposing()
mxView.clear();
}
OGLTransitionerImpl::OGLTransitionerImpl() :
OGLTransitionerImplBase(m_aMutex),
GLleavingSlide( 0 ),
GLenteringSlide( 0 ),
pWindow( NULL ),
mxView(),
EnteringBytes(),
LeavingBytes(),
mbRestoreSync( false ),
mbUseLeavingPixmap( false ),
mbUseEnteringPixmap( false ),
SlideBitmapLayout(),
SlideSize()
OGLTransitionerImpl::OGLTransitionerImpl()
: OGLTransitionerImplBase(m_aMutex)
, GLleavingSlide(0)
, GLenteringSlide(0)
, pWindow(NULL)
, mxView()
, EnteringBytes()
, LeavingBytes()
#if defined( GLX_EXT_texture_from_pixmap )
, LeavingPixmap(0)
, EnteringPixmap(0)
#endif
, mbRestoreSync(false)
, mbUseLeavingPixmap(false)
, mbUseEnteringPixmap(false)
, mbFreeLeavingPixmap(false)
, mbFreeEnteringPixmap(false)
#ifdef UNX
, maLeavingPixmap(0)
, maEnteringPixmap(0)
#endif
, SlideBitmapLayout()
, SlideSize()
#ifdef UNX
, mnGLXVersion(0.0)
#endif
, mbTextureFromPixmap(false)
, mbGenerateMipmap(false)
, mbHasTFPVisual(false)
{
memset(&GLWin, 0, sizeof(GLWin));
}
......
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