[ 2659155 ] Missing initializations
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@353 67173fc5-114c-0410-ac8e-9d2fd5bffc1fpull/1/head
parent
dfdca556fd
commit
c42611ea5e
|
@ -313,7 +313,10 @@ DefaultLogger::DefaultLogger(LogSeverity severity)
|
||||||
|
|
||||||
: m_Severity ( severity )
|
: m_Severity ( severity )
|
||||||
, noRepeatMsg (false)
|
, noRepeatMsg (false)
|
||||||
{}
|
, lastLen( 0 )
|
||||||
|
{
|
||||||
|
lastMsg[0] = '\0';
|
||||||
|
}
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------------
|
||||||
// Destructor
|
// Destructor
|
||||||
|
|
|
@ -177,6 +177,7 @@ struct Material
|
||||||
: diffuse (0.6f,0.6f,0.6f)
|
: diffuse (0.6f,0.6f,0.6f)
|
||||||
, ior (1.f)
|
, ior (1.f)
|
||||||
, alpha (1.f)
|
, alpha (1.f)
|
||||||
|
, shineness (0.0f)
|
||||||
, illumination_model (1)
|
, illumination_model (1)
|
||||||
{
|
{
|
||||||
// empty
|
// empty
|
||||||
|
|
Loading…
Reference in New Issue