Fixed: Initialize members in ACLoader
parent
d899f4db57
commit
a9a8796f71
|
@ -129,6 +129,15 @@ static const aiImporterDesc desc = {
|
||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
// Constructor to be privately used by Importer
|
// Constructor to be privately used by Importer
|
||||||
AC3DImporter::AC3DImporter()
|
AC3DImporter::AC3DImporter()
|
||||||
|
: buffer(),
|
||||||
|
configSplitBFCull(),
|
||||||
|
configEvalSubdivision(),
|
||||||
|
mNumMeshes(),
|
||||||
|
mLights(),
|
||||||
|
lights(),
|
||||||
|
groups(),
|
||||||
|
polys(),
|
||||||
|
worlds()
|
||||||
{
|
{
|
||||||
// nothing to be done here
|
// nothing to be done here
|
||||||
}
|
}
|
||||||
|
|
|
@ -130,6 +130,7 @@ public:
|
||||||
, surfaces()
|
, surfaces()
|
||||||
, numRefs (0)
|
, numRefs (0)
|
||||||
, subDiv (0)
|
, subDiv (0)
|
||||||
|
, crease()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
// Type description
|
// Type description
|
||||||
|
|
Loading…
Reference in New Issue