diff options
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llagentcamera.cpp | 5 | ||||
| -rw-r--r-- | indra/newview/llappviewer.cpp | 8 | ||||
| -rw-r--r-- | indra/newview/llinventorypanel.cpp | 3 | ||||
| -rwxr-xr-x | indra/newview/llstartup.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llviewerobjectlist.cpp | 6 | ||||
| -rwxr-xr-x | indra/newview/llviewerwindow.cpp | 3 | ||||
| -rw-r--r-- | indra/newview/pipeline.cpp | 35 | 
7 files changed, 19 insertions, 43 deletions
| diff --git a/indra/newview/llagentcamera.cpp b/indra/newview/llagentcamera.cpp index 8d80e3aa0a..4e6079e3f2 100644 --- a/indra/newview/llagentcamera.cpp +++ b/indra/newview/llagentcamera.cpp @@ -1137,13 +1137,14 @@ void LLAgentCamera::updateLookAt(const S32 mouse_x, const S32 mouse_y)  	}  } +static LLFastTimer::DeclareTimer FTM_UPDATE_CAMERA("Camera"); +  //-----------------------------------------------------------------------------  // updateCamera()  //-----------------------------------------------------------------------------  void LLAgentCamera::updateCamera()  { -	static LLFastTimer::DeclareTimer ftm("Camera"); -	LLFastTimer t(ftm); +	LLFastTimer t(FTM_UPDATE_CAMERA);  	// - changed camera_skyward to the new global "mCameraUpVector"  	mCameraUpVector = LLVector3::z_axis; diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 9d4ed833b8..547eb2fefe 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -4126,6 +4126,8 @@ static LLFastTimer::DeclareTimer FTM_WORLD_UPDATE("Update World");  static LLFastTimer::DeclareTimer FTM_NETWORK("Network");  static LLFastTimer::DeclareTimer FTM_AGENT_NETWORK("Agent Network");  static LLFastTimer::DeclareTimer FTM_VLMANAGER("VL Manager"); +static LLFastTimer::DeclareTimer FTM_AGENT_POSITION("Agent Position"); +static LLFastTimer::DeclareTimer FTM_HUD_EFFECTS("HUD Effects");  ///////////////////////////////////////////////////////  // idle() @@ -4362,8 +4364,7 @@ void LLAppViewer::idle()  	{  		// Handle pending gesture processing -		static LLFastTimer::DeclareTimer ftm("Agent Position"); -		LLFastTimer t(ftm); +		LLFastTimer t(FTM_AGENT_POSITION);  		LLGestureMgr::instance().update();  		gAgent.updateAgentPosition(gFrameDTClamped, yaw, current_mouse.mX, current_mouse.mY); @@ -4410,8 +4411,7 @@ void LLAppViewer::idle()  	//  	{ -		static LLFastTimer::DeclareTimer ftm("HUD Effects"); -		LLFastTimer t(ftm); +		LLFastTimer t(FTM_HUD_EFFECTS);  		LLSelectMgr::getInstance()->updateEffects();  		LLHUDManager::getInstance()->cleanupEffects();  		LLHUDManager::getInstance()->sendEffects(); diff --git a/indra/newview/llinventorypanel.cpp b/indra/newview/llinventorypanel.cpp index f7567baa2b..4c10717ce8 100644 --- a/indra/newview/llinventorypanel.cpp +++ b/indra/newview/llinventorypanel.cpp @@ -396,9 +396,10 @@ LLInventoryFilter::EFolderShow LLInventoryPanel::getShowFolderState()  	return getFilter()->getShowFolderState();  } +static LLFastTimer::DeclareTimer FTM_REFRESH("Inventory Refresh"); +  void LLInventoryPanel::modelChanged(U32 mask)  { -	static LLFastTimer::DeclareTimer FTM_REFRESH("Inventory Refresh");  	LLFastTimer t2(FTM_REFRESH);  	bool handled = false; diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index bf47bd44c3..5f6772bf0b 100755 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -2184,7 +2184,7 @@ bool idle_startup()  		LLAppViewer::instance()->handleLoginComplete();  		// reset timers now that we are running "logged in" logic -		LLFastTimer::reset(); +		LLTrace::BlockTimer::reset();  		LLAgentPicksInfo::getInstance()->requestNumberOfPicks(); diff --git a/indra/newview/llviewerobjectlist.cpp b/indra/newview/llviewerobjectlist.cpp index 9c6045943f..1bd028688a 100644 --- a/indra/newview/llviewerobjectlist.cpp +++ b/indra/newview/llviewerobjectlist.cpp @@ -850,6 +850,8 @@ private:  	LLSD mObjectIDs;  }; +static LLFastTimer::DeclareTimer FTM_IDLE_COPY("Idle Copy"); +  void LLViewerObjectList::update(LLAgent &agent, LLWorld &world)  {  	// Update globals @@ -900,10 +902,8 @@ void LLViewerObjectList::update(LLAgent &agent, LLWorld &world)  	U32 idle_count = 0; -	static LLFastTimer::DeclareTimer idle_copy("Idle Copy"); -  	{ -		LLFastTimer t(idle_copy); +		LLFastTimer t(FTM_IDLE_COPY);   		for (std::vector<LLPointer<LLViewerObject> >::iterator active_iter = mActiveObjects.begin();  			active_iter != mActiveObjects.end(); active_iter++) diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index 8e72ca1d74..dea55fd0b0 100755 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -2760,11 +2760,12 @@ void append_xui_tooltip(LLView* viewp, LLToolTip::Params& params)  	}  } +static LLFastTimer::DeclareTimer ftm("Update UI"); +  // Update UI based on stored mouse position from mouse-move  // event processing.  void LLViewerWindow::updateUI()  { -	static LLFastTimer::DeclareTimer ftm("Update UI");  	LLFastTimer t(ftm);  	static std::string last_handle_msg; diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 5ac5ae892a..acf3a4e74c 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -1886,6 +1886,8 @@ void LLPipeline::updateMovedList(LLDrawable::drawable_vector_t& moved_list)  static LLFastTimer::DeclareTimer FTM_OCTREE_BALANCE("Balance Octree");  static LLFastTimer::DeclareTimer FTM_UPDATE_MOVE("Update Move"); +static LLFastTimer::DeclareTimer FTM_RETEXTURE("Retexture"); +static LLFastTimer::DeclareTimer FTM_MOVED_LIST("Moved List");  void LLPipeline::updateMove()  { @@ -1899,8 +1901,7 @@ void LLPipeline::updateMove()  	assertInitialized();  	{ -		static LLFastTimer::DeclareTimer ftm("Retexture"); -		LLFastTimer t(ftm); +		LLFastTimer t(FTM_RETEXTURE);  		for (LLDrawable::drawable_set_t::iterator iter = mRetexturedList.begin();  			 iter != mRetexturedList.end(); ++iter) @@ -1915,8 +1916,7 @@ void LLPipeline::updateMove()  	}  	{ -		static LLFastTimer::DeclareTimer ftm("Moved List"); -		LLFastTimer t(ftm); +		LLFastTimer t(FTM_MOVED_LIST);  		updateMovedList(mMovedList);  	} @@ -3688,33 +3688,6 @@ void LLPipeline::postSort(LLCamera& camera)  		}  	} -	/*static LLFastTimer::DeclareTimer FTM_TRANSFORM_WAIT("Transform Fence"); -	static LLFastTimer::DeclareTimer FTM_TRANSFORM_DO_WORK("Transform Work"); -	if (use_transform_feedback) -	{ //using transform feedback, wait for transform feedback to complete -		LLFastTimer t(FTM_TRANSFORM_WAIT); - -		S32 done = 0; -		//glGetQueryivARB(GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN, GL_CURRENT_QUERY, &count); -		 -		glGetQueryObjectivARB(mMeshDirtyQueryObject, GL_QUERY_RESULT_AVAILABLE, &done); -		 -		while (!done) -		{  -			{ -				LLFastTimer t(FTM_TRANSFORM_DO_WORK); -				F32 max_time = llmin(gFrameIntervalSeconds*10.f, 1.f); -				//do some useful work while we wait -				LLAppViewer::getTextureCache()->update(max_time); // unpauses the texture cache thread -				LLAppViewer::getImageDecodeThread()->update(max_time); // unpauses the image thread -				LLAppViewer::getTextureFetch()->update(max_time); // unpauses the texture fetch thread -			} -			glGetQueryObjectivARB(mMeshDirtyQueryObject, GL_QUERY_RESULT_AVAILABLE, &done); -		} - -		mTransformFeedbackPrimitives = 0; -	}*/ -						  	//LLSpatialGroup::sNoDelete = FALSE;  	llpushcallstacks ;  } | 
