Fixed: Initialize all members in MeshHelper

pull/596/head
Richard 2015-07-02 05:46:33 -06:00
parent 987034e080
commit c331df69d7
1 changed files with 4 additions and 0 deletions

View File

@ -145,6 +145,7 @@ namespace AssimpView {
MeshHelper()
:
eShadingMode(),
piVB( NULL ),
piIB( NULL ),
piVBNormals( NULL ),
@ -158,6 +159,9 @@ namespace AssimpView {
piOpacityTexture( NULL ),
piShininessTexture( NULL ),
piLightmapTexture( NULL ),
fOpacity(),
fShininess(),
fSpecularStrength()
twosided( false ),
pvOriginalNormals( NULL )
{}