Skip to content
Snippets Groups Projects
Commit 63aef899 authored by Tofu Linden's avatar Tofu Linden
Browse files

CID-365

Checker: UNINIT_CTOR
Function: LLSurfacePatch::LLSurfacePatch()
File: /indra/newview/llsurfacepatch.cpp
parent 8bf32990
No related branches found
No related tags found
No related merge requests found
...@@ -60,6 +60,7 @@ LLSurfacePatch::LLSurfacePatch() : ...@@ -60,6 +60,7 @@ LLSurfacePatch::LLSurfacePatch() :
mHeightsGenerated(FALSE), mHeightsGenerated(FALSE),
mDataOffset(0), mDataOffset(0),
mDataZ(NULL), mDataZ(NULL),
mDataNorm(NULL),
mVObjp(NULL), mVObjp(NULL),
mOriginRegion(0.f, 0.f, 0.f), mOriginRegion(0.f, 0.f, 0.f),
mCenterRegion(0.f, 0.f, 0.f), mCenterRegion(0.f, 0.f, 0.f),
...@@ -355,12 +356,14 @@ void LLSurfacePatch::calcNormal(const U32 x, const U32 y, const U32 stride) ...@@ -355,12 +356,14 @@ void LLSurfacePatch::calcNormal(const U32 x, const U32 y, const U32 stride)
normal %= c2; normal %= c2;
normal.normVec(); normal.normVec();
llassert(mDataNorm);
*(mDataNorm + surface_stride * y + x) = normal; *(mDataNorm + surface_stride * y + x) = normal;
} }
const LLVector3 &LLSurfacePatch::getNormal(const U32 x, const U32 y) const const LLVector3 &LLSurfacePatch::getNormal(const U32 x, const U32 y) const
{ {
U32 surface_stride = mSurfacep->getGridsPerEdge(); U32 surface_stride = mSurfacep->getGridsPerEdge();
llassert(mDataNorm);
return *(mDataNorm + surface_stride * y + x); return *(mDataNorm + surface_stride * y + x);
} }
...@@ -402,6 +405,7 @@ void LLSurfacePatch::updateVerticalStats() ...@@ -402,6 +405,7 @@ void LLSurfacePatch::updateVerticalStats()
U32 i, j, k; U32 i, j, k;
F32 z, total; F32 z, total;
llassert(mDataZ);
z = *(mDataZ); z = *(mDataZ);
mMinZ = z; mMinZ = z;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment