diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-08-31 14:38:38 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-09-02 12:14:46 +0100 |
commit | cba672f2c593f002ea13fba01e9f43ff955f97e4 (patch) | |
tree | 4ef9961cbfc23419f05c2d0952879e279a0c0a5b /chart2 | |
parent | d3cd290491f77db35e63d79d94baaaaffb10cd15 (diff) |
coverity#1215398 Uninitialized scalar field
Change-Id: I190cafda21a9e5969d8a353b272a0e92b5b65903
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/view/main/GL3DRenderer.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/chart2/source/view/main/GL3DRenderer.cxx b/chart2/source/view/main/GL3DRenderer.cxx index cde4356c46d7..9d34ea790f01 100644 --- a/chart2/source/view/main/GL3DRenderer.cxx +++ b/chart2/source/view/main/GL3DRenderer.cxx @@ -150,6 +150,9 @@ OpenGL3DRenderer::ShaderResources::ShaderResources() , m_3DNormalMatrixID(0) , m_3DVertexID(0) , m_3DNormalID(0) + , m_3DMinCoordXID(0) + , m_3DMaxCoordXID(0) + , m_3DUndrawID(0) , m_3DMaterialAmbientID(0) , m_3DMaterialDiffuseID(0) , m_3DMaterialSpecularID(0) @@ -183,6 +186,10 @@ OpenGL3DRenderer::ShaderResources::ShaderResources() , m_3DBatchVertexID(0) , m_3DBatchNormalID(0) , m_3DBatchColorID(0) + , m_3DBatchTransMatrixID(0) + , m_3DBatchMinCoordXID(0) + , m_3DBatchMaxCoordXID(0) + , m_3DBatchUndrawID(0) , mbTexBatchSupport(false) , m_BatchTextProID(0) , m_BatchTextMatrixID(0) |