Fixed Coverity reported issue.
CID 11829: Uninitialized scalar field (UNINIT_CTOR) Non-static class member _primitiveMode is not initialized in this constructor nor in any functions that it calls.
This commit is contained in:
@@ -40,7 +40,8 @@ SceneGraphBuilder::SceneGraphBuilder():
|
||||
_colorSet(false),
|
||||
_color(1.0f,1.0f,1.0f,1.0f),
|
||||
_maxNumTexCoordComponents(0),
|
||||
_texCoord(0.f,0.0f,0.0f,1.0f)
|
||||
_texCoord(0.f,0.0f,0.0f,1.0f),
|
||||
_primitiveMode(0)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user