remove unused variables

Change-Id: I020be0cecd3becc24edc1267b4bce714db3bb627
This commit is contained in:
Markus Mohrhard
2014-05-25 21:46:05 +02:00
committed by Markus Mohrhard
parent 45c25954db
commit fe45492694
2 changed files with 0 additions and 2 deletions

View File

@@ -81,7 +81,6 @@ struct Polygon3DInfo
glm::vec4 polygonColor;
glm::vec4 id;
Vertices3D *vertices;
UVs3D *uvs;
Normals3D *normals;
std::vector <Vertices3D *> verticesList;
std::vector <Normals3D *> normalsList;

View File

@@ -80,7 +80,6 @@ OpenGL3DRenderer::OpenGL3DRenderer():
m_Polygon3DInfo.lineOnly = false;
m_Polygon3DInfo.twoSidesLighting = false;
m_Polygon3DInfo.vertices = NULL;
m_Polygon3DInfo.uvs = NULL;
m_Polygon3DInfo.normals = NULL;
m_Polygon3DInfo.lineWidth = 0.001f;