diff options
| -rw-r--r-- | indra/newview/llviewerdisplay.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/pipeline.cpp | 5 | 
2 files changed, 1 insertions, 8 deletions
diff --git a/indra/newview/llviewerdisplay.cpp b/indra/newview/llviewerdisplay.cpp index f7cde9a6cb..ab6ff88073 100644 --- a/indra/newview/llviewerdisplay.cpp +++ b/indra/newview/llviewerdisplay.cpp @@ -699,8 +699,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot)  		// Doing this here gives hardware occlusion queries extra time to complete  		LLAppViewer::instance()->pingMainloopTimeout("Display:UpdateImages");  		LLError::LLCallStacks::clear() ; -		llpushcallstacks ; - +		  		{  			LLMemType mt_iu(LLMemType::MTYPE_DISPLAY_IMAGE_UPDATE);  			LLFastTimer t(FTM_IMAGE_UPDATE); @@ -718,7 +717,6 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot)  			LLImageGL::deleteDeadTextures();  			stop_glerror();  		} -		llpushcallstacks ;  		///////////////////////////////////  		//  		// StateSort diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 2de27b2b9e..ee3a2fc34f 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -7115,7 +7115,6 @@ void LLPipeline::generateWaterReflection(LLCamera& camera_in)  			skip_avatar_update = TRUE;  		} -		llpushcallstacks ;  		if (!skip_avatar_update)  		{  			gAgentAvatarp->updateAttachmentVisibility(CAMERA_MODE_THIRD_PERSON); @@ -7214,7 +7213,6 @@ void LLPipeline::generateWaterReflection(LLCamera& camera_in)  										(1 << LLPipeline::RENDER_TYPE_WL_SKY));  					static LLCullResult result;  					updateCull(camera, result); -					llpushcallstacks ;  					stateSort(camera, result);  					mRenderTypeMask = tmp & ((1 << LLPipeline::RENDER_TYPE_SKY) |  										(1 << LLPipeline::RENDER_TYPE_CLOUDS) | @@ -7249,7 +7247,6 @@ void LLPipeline::generateWaterReflection(LLCamera& camera_in)  					LLGLUserClipPlane clip_plane(plane, mat, projection);  					LLGLDisable cull(GL_CULL_FACE);  					updateCull(camera, ref_result, 1); -					llpushcallstacks ;  					stateSort(camera, ref_result);  				} @@ -7306,7 +7303,6 @@ void LLPipeline::generateWaterReflection(LLCamera& camera_in)  				LLGLUserClipPlane clip_plane(LLPlane(-pnorm, -(pd+pad)), mat, projection);  				static LLCullResult result;  				updateCull(camera, result, water_clip); -				llpushcallstacks ;  				stateSort(camera, result);  				gGL.setColorMask(true, true); @@ -7345,7 +7341,6 @@ void LLPipeline::generateWaterReflection(LLCamera& camera_in)  		{  			gAgentAvatarp->updateAttachmentVisibility(gAgentCamera.getCameraMode());  		} -		llpushcallstacks ;  	}  }  | 
