mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-12 23:24:41 +00:00
uninitialized and unused value cleanups
(cherry picked from commit 1f08602cf0ad84409cd8b3520510f9c6ce7d5f9c)
This commit is contained in:
parent
1230d0d280
commit
0d4221fa59
38 changed files with 176 additions and 360 deletions
|
|
@ -107,7 +107,8 @@ public:
|
|||
{
|
||||
Point3F pos;
|
||||
Point3F nor;
|
||||
F32 s, t;
|
||||
F32 s = 0.0f;
|
||||
F32 t = 0.0f;
|
||||
};
|
||||
|
||||
Vector<SphereVertex> tmpVertices;
|
||||
|
|
@ -119,8 +120,8 @@ public:
|
|||
{
|
||||
Point3F pos;
|
||||
Point3F nor;
|
||||
F32 s;
|
||||
F32 t;
|
||||
F32 s = 0.0f;
|
||||
F32 t = 0.0f;
|
||||
};
|
||||
|
||||
Vector<FinalVertexData> finalVertData;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue