diff options
| author | Xiaohong Bao <bao@lindenlab.com> | 2010-05-13 14:40:48 -0600 | 
|---|---|---|
| committer | Xiaohong Bao <bao@lindenlab.com> | 2010-05-13 14:40:48 -0600 | 
| commit | 963214f624c963ad9ce80e81db294d15a049b851 (patch) | |
| tree | 0d6b04c5a51072c094cf8be88e861ef05c44de01 | |
| parent | de5b15b590770219927aa5bfb3911629d895fefe (diff) | |
EXT-7155: FIXED: bumpmaps failed to load
reviewed by davep.
(transplanted from fec2b449fbf9af842ee06e1be7198c4b2b879400)
| -rw-r--r-- | indra/newview/llviewerdisplay.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/pipeline.cpp | 7 | ||||
| -rw-r--r-- | indra/newview/pipeline.h | 1 | 
3 files changed, 9 insertions, 0 deletions
diff --git a/indra/newview/llviewerdisplay.cpp b/indra/newview/llviewerdisplay.cpp index 3cd7af6433..1490f8153c 100644 --- a/indra/newview/llviewerdisplay.cpp +++ b/indra/newview/llviewerdisplay.cpp @@ -732,6 +732,7 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot)  		{  			LLViewerCamera::sCurCameraID = LLViewerCamera::CAMERA_WORLD;  			LLMemType mt_ss(LLMemType::MTYPE_DISPLAY_STATE_SORT); +			gPipeline.sAllowRebuildPriorityGroup = TRUE ;  			gPipeline.stateSort(*LLViewerCamera::getInstance(), result);  			stop_glerror(); diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index dbd7f86447..ab41635b5e 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -288,6 +288,7 @@ BOOL	LLPipeline::sRenderFrameTest = FALSE;  BOOL	LLPipeline::sRenderAttachedLights = TRUE;  BOOL	LLPipeline::sRenderAttachedParticles = TRUE;  BOOL	LLPipeline::sRenderDeferred = FALSE; +BOOL    LLPipeline::sAllowRebuildPriorityGroup = FALSE ;  S32		LLPipeline::sVisibleLightCount = 0;  F32		LLPipeline::sMinRenderSize = 0.f; @@ -1808,6 +1809,12 @@ void LLPipeline::updateGL()  void LLPipeline::rebuildPriorityGroups()  { +	if(!sAllowRebuildPriorityGroup) +	{ +		return ; +	} +	sAllowRebuildPriorityGroup = FALSE ; +  	LLTimer update_timer;  	LLMemType mt(LLMemType::MTYPE_PIPELINE); diff --git a/indra/newview/pipeline.h b/indra/newview/pipeline.h index 2c14b94847..f2e1d8eacb 100644 --- a/indra/newview/pipeline.h +++ b/indra/newview/pipeline.h @@ -487,6 +487,7 @@ public:  	static BOOL				sRenderAttachedLights;  	static BOOL				sRenderAttachedParticles;  	static BOOL				sRenderDeferred; +	static BOOL             sAllowRebuildPriorityGroup;  	static S32				sVisibleLightCount;  	static F32				sMinRenderSize;  | 
