diff options
| author | Dave Parks <davep@lindenlab.com> | 2013-10-11 17:10:26 -0500 | 
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2013-10-11 17:10:26 -0500 | 
| commit | 465809711e69a95cbdc9d0b5066a308a5077e0a0 (patch) | |
| tree | 6abca8829f57c4936b90d85bfc75aad4debc985c | |
| parent | e43058e7640bbdb8507e153bf63a5e6adb016101 (diff) | |
MAINT-2968 Transplant cleanup.
| -rwxr-xr-x | indra/newview/lldrawpoolavatar.cpp | 2 | ||||
| -rwxr-xr-x | indra/newview/llspatialpartition.cpp | 11 | 
2 files changed, 1 insertions, 12 deletions
| diff --git a/indra/newview/lldrawpoolavatar.cpp b/indra/newview/lldrawpoolavatar.cpp index ba8c449c3d..f622d5a63a 100755 --- a/indra/newview/lldrawpoolavatar.cpp +++ b/indra/newview/lldrawpoolavatar.cpp @@ -697,7 +697,7 @@ void LLDrawPoolAvatar::beginDeferredImpostor()  	specular_channel = sVertexProgram->enableTexture(LLViewerShaderMgr::SPECULAR_MAP);  	normal_channel = sVertexProgram->enableTexture(LLViewerShaderMgr::DEFERRED_NORMAL);  	sDiffuseChannel = sVertexProgram->enableTexture(LLViewerShaderMgr::DIFFUSE_MAP); -	gPipeline.bindDeferredShader(*sVertexProgram); +	sVertexProgram->bind();  	sVertexProgram->setMinimumAlpha(0.01f);  } diff --git a/indra/newview/llspatialpartition.cpp b/indra/newview/llspatialpartition.cpp index 10dbfa26ff..2c83f6d0b7 100755 --- a/indra/newview/llspatialpartition.cpp +++ b/indra/newview/llspatialpartition.cpp @@ -4121,11 +4121,6 @@ void renderAvatarCollisionVolumes(LLVOAvatar* avatar)  	avatar->renderCollisionVolumes();  } -void renderAvatarJoints(LLVOAvatar* avatar) -{ -	avatar->renderJoints(); -} -  void renderAgentTarget(LLVOAvatar* avatar)  {  	// render these for self only (why, i don't know) @@ -4283,11 +4278,6 @@ public:  				renderAvatarCollisionVolumes(avatar);  			} -			if (avatar && gPipeline.hasRenderDebugMask(LLPipeline::RENDER_DEBUG_AVATAR_JOINTS)) -			{ -				renderAvatarJoints(avatar); -			} -  			if (avatar && gPipeline.hasRenderDebugMask(LLPipeline::RENDER_DEBUG_AGENT_TARGET))  			{  				renderAgentTarget(avatar); @@ -4571,7 +4561,6 @@ void LLSpatialPartition::renderDebug()  									  LLPipeline::RENDER_DEBUG_TEXTURE_ANIM |  									  LLPipeline::RENDER_DEBUG_RAYCAST |  									  LLPipeline::RENDER_DEBUG_AVATAR_VOLUME | -									  LLPipeline::RENDER_DEBUG_AVATAR_JOINTS |  									  LLPipeline::RENDER_DEBUG_AGENT_TARGET |  									  //LLPipeline::RENDER_DEBUG_BUILD_QUEUE |  									  LLPipeline::RENDER_DEBUG_SHADOW_FRUSTA | | 
