diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2012-09-07 14:47:24 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2012-09-07 14:47:24 -0400 | 
| commit | 695c4135ff6fa0c50daa4c84f23096096ffd8a54 (patch) | |
| tree | a9b539e3ba588634fc493f2ed5ead21124e306ff /indra/newview/pipeline.h | |
| parent | af6e665d5c9c9a5ea480389c284839f3945bf786 (diff) | |
| parent | b6f0921099b9b2a0a582886ebd6383fa20eac2b0 (diff) | |
Automated merge with file:///Users/nat/linden/davep-viewer-development-rebased
Diffstat (limited to 'indra/newview/pipeline.h')
| -rw-r--r-- | indra/newview/pipeline.h | 21 | 
1 files changed, 16 insertions, 5 deletions
| diff --git a/indra/newview/pipeline.h b/indra/newview/pipeline.h index 6ae482fa06..fd2a1e06cd 100644 --- a/indra/newview/pipeline.h +++ b/indra/newview/pipeline.h @@ -151,6 +151,8 @@ public:  	void		 unlinkDrawable(LLDrawable*); +	static void removeMutedAVsLights(LLVOAvatar*); +  	// Object related methods  	void        markVisible(LLDrawable *drawablep, LLCamera& camera);  	void		markOccluder(LLSpatialGroup* group); @@ -223,6 +225,7 @@ public:  	void updateGL();  	void rebuildPriorityGroups();  	void rebuildGroups(); +	void clearRebuildGroups();  	//calculate pixel area of given box from vantage point of given camera  	static F32 calcPixelArea(LLVector3 center, LLVector3 size, LLCamera& camera); @@ -294,10 +297,10 @@ public:  	void setLight(LLDrawable *drawablep, BOOL is_light);  	BOOL hasRenderBatches(const U32 type) const; -	LLCullResult::drawinfo_list_t::iterator beginRenderMap(U32 type); -	LLCullResult::drawinfo_list_t::iterator endRenderMap(U32 type); -	LLCullResult::sg_list_t::iterator beginAlphaGroups(); -	LLCullResult::sg_list_t::iterator endAlphaGroups(); +	LLCullResult::drawinfo_iterator beginRenderMap(U32 type); +	LLCullResult::drawinfo_iterator endRenderMap(U32 type); +	LLCullResult::sg_iterator beginAlphaGroups(); +	LLCullResult::sg_iterator endAlphaGroups();  	void addTrianglesDrawn(S32 index_count, U32 render_type = LLRender::TRIANGLES); @@ -369,6 +372,12 @@ public:  	void addDebugBlip(const LLVector3& position, const LLColor4& color); +	void hidePermanentObjects( std::vector<U32>& restoreList ); +	void restorePermanentObjects( const std::vector<U32>& restoreList ); +	void skipRenderingOfTerrain( BOOL flag ); +	void hideObject( const LLUUID& id ); +	void restoreHiddenObject( const LLUUID& id ); +  private:  	void unloadShaders();  	void addToQuickLookup( LLDrawPool* new_poolp ); @@ -376,7 +385,9 @@ private:  	BOOL updateDrawableGeom(LLDrawable* drawable, BOOL priority);  	void assertInitializedDoError();  	bool assertInitialized() { const bool is_init = isInit(); if (!is_init) assertInitializedDoError(); return is_init; }; -	 +	void connectRefreshCachedSettingsSafe(const std::string name); +	void hideDrawable( LLDrawable *pDrawable ); +	void unhideDrawable( LLDrawable *pDrawable );  public:  	enum {GPU_CLASS_MAX = 3 }; | 
