diff options
| author | David Parks <davep@lindenlab.com> | 2009-09-22 21:10:31 +0000 | 
|---|---|---|
| committer | David Parks <davep@lindenlab.com> | 2009-09-22 21:10:31 +0000 | 
| commit | 513c24c3e9d8d1265eaeabcadff95367a3402edf (patch) | |
| tree | bc3804828cf41db3baaabc5081f29d18a8119f53 | |
| parent | f87f9d17d2eb5d16e42da1f709ba59750e5fd1ed (diff) | |
Fix for non fullbright face spam.
| -rw-r--r-- | indra/newview/llvovolume.cpp | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 0217324808..03709a14fb 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -2337,6 +2337,7 @@ void LLVolumeGeometryManager::registerFace(LLSpatialGroup* group, LLFace* facep,  	BOOL fullbright = (type == LLRenderPass::PASS_FULLBRIGHT) || +					  (type == LLRenderPass::PASS_INVISIBLE) ||  					  (type == LLRenderPass::PASS_ALPHA ? facep->isState(LLFace::FULLBRIGHT) : FALSE);  	if (!fullbright && type != LLRenderPass::PASS_GLOW && !facep->mVertexBuffer->hasDataType(LLVertexBuffer::TYPE_NORMAL)) @@ -2987,7 +2988,7 @@ void LLVolumeGeometryManager::genDrawInfo(LLSpatialGroup* group, U32 mask, std::  					}  				} -				if (!is_alpha && te->getShiny()) +				if (!is_alpha && te->getShiny() && LLPipeline::sRenderBump)  				{  					registerFace(group, facep, LLRenderPass::PASS_SHINY);  				} @@ -2998,7 +2999,7 @@ void LLVolumeGeometryManager::genDrawInfo(LLSpatialGroup* group, U32 mask, std::  				llassert((mask & LLVertexBuffer::MAP_NORMAL) || fullbright);  				facep->setPoolType((fullbright) ? LLDrawPool::POOL_FULLBRIGHT : LLDrawPool::POOL_SIMPLE); -				if (!force_simple && te->getBumpmap()) +				if (!force_simple && te->getBumpmap() && LLPipeline::sRenderBump)  				{  					registerFace(group, facep, LLRenderPass::PASS_BUMP);  				}  | 
