diff options
| author | Xiaohong Bao <bao@lindenlab.com> | 2012-01-18 15:26:30 -0700 | 
|---|---|---|
| committer | Xiaohong Bao <bao@lindenlab.com> | 2012-01-18 15:26:30 -0700 | 
| commit | 05cff1ad7f71f6ca74af44bdcf1f119cd5149b93 (patch) | |
| tree | e23215f43f0ef0a5eab1d78809b69221a501b29d | |
| parent | 3ed8f8907665d8700199a1181a5dd106a6804edb (diff) | |
fix for SH-2827: [crashhunters] Crash in LLPipeline::generateWaterReflection()
| -rw-r--r-- | indra/llrender/llrender.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/pipeline.cpp | 1 | 
2 files changed, 1 insertions, 2 deletions
| diff --git a/indra/llrender/llrender.cpp b/indra/llrender/llrender.cpp index 03a9884c2b..cd827f5091 100644 --- a/indra/llrender/llrender.cpp +++ b/indra/llrender/llrender.cpp @@ -1434,8 +1434,6 @@ void LLRender::loadIdentity()  	flush();  	{ -		llassert_always(mMatrixMode < NUM_MATRIX_MODES) ; -  		mMatrix[mMatrixMode][mMatIdx[mMatrixMode]].make_identity();  		mMatHash[mMatrixMode]++;  	} diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 8449e74fb6..737c5b51a2 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -3765,6 +3765,7 @@ void LLPipeline::renderGeom(LLCamera& camera, BOOL forceVBOUpdate)  	LLAppViewer::instance()->pingMainloopTimeout("Pipeline:ForceVBO");  	// Initialize lots of GL state to "safe" values +	gGL.getTexUnit(0)->unbind(LLTexUnit::TT_TEXTURE);  	gGL.matrixMode(LLRender::MM_TEXTURE);  	gGL.loadIdentity();  	gGL.matrixMode(LLRender::MM_MODELVIEW); | 
