diff options
author | Vinson Lee <[email protected]> | 2009-12-22 23:07:00 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2009-12-22 23:07:00 -0800 |
commit | 57b5ca5d11044d06f8969d54ff01c27ff44585ac (patch) | |
tree | 42c0917f8c8da9bb42f2e019d2e2d2348e009069 /src/glu/sgi/libnurbs/nurbtess/sampleCompTop.cc | |
parent | 19a40524d3d6f8d4a2371d8335667b57e6fb0c22 (diff) |
glu/sgi: Silence uninitialized variable warnings.
Diffstat (limited to 'src/glu/sgi/libnurbs/nurbtess/sampleCompTop.cc')
-rw-r--r-- | src/glu/sgi/libnurbs/nurbtess/sampleCompTop.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glu/sgi/libnurbs/nurbtess/sampleCompTop.cc b/src/glu/sgi/libnurbs/nurbtess/sampleCompTop.cc index b7b929623a2..951e937c45f 100644 --- a/src/glu/sgi/libnurbs/nurbtess/sampleCompTop.cc +++ b/src/glu/sgi/libnurbs/nurbtess/sampleCompTop.cc @@ -172,7 +172,7 @@ void sampleTopRightWithGridLine(Real* topVertex, return; } - Int segIndexSmall, segIndexLarge; + Int segIndexSmall = 0, segIndexLarge; findTopRightSegment(rightChain, rightStart, rightEnd, @@ -294,7 +294,7 @@ void sampleTopLeftWithGridLine(Real* topVertex, primStream* pStream ) { - Int segIndexSmall, segIndexLarge; + Int segIndexSmall = 0, segIndexLarge; //if left chain is empty, then there is only one top vertex with one grid // line if(leftEnd < leftStart) { |