mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 16:44:36 +00:00
uninitialized variables-ts
This commit is contained in:
parent
c2e74f375a
commit
9e1c22204f
13 changed files with 29 additions and 10 deletions
|
|
@ -198,7 +198,7 @@ public:
|
|||
bool ownsData;
|
||||
|
||||
public:
|
||||
TSMeshVertexArray() : base(NULL), numElements(0), colorOffset(0), boneOffset(0), vertexDataReady(false), ownsData(false) {}
|
||||
TSMeshVertexArray() : base(NULL), vertSz(0), numElements(0), colorOffset(0), boneOffset(0), vertexDataReady(false), ownsData(false) {}
|
||||
virtual ~TSMeshVertexArray() { set(NULL, 0, 0, 0, 0); }
|
||||
|
||||
virtual void set(void *b, dsize_t s, U32 n, S32 inColorOffset, S32 inBoneOffset, bool nowOwnsData = true)
|
||||
|
|
@ -339,7 +339,7 @@ protected:
|
|||
Point3F mBillboardAxis;
|
||||
|
||||
/// @name Convex Hull Data
|
||||
/// Convex hulls are convex (no angles >= 180º) meshes used for collision
|
||||
/// Convex hulls are convex (no angles >= 180º) meshes used for collision
|
||||
/// @{
|
||||
|
||||
Vector<Point3F> mPlaneNormals;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue