diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-09-10 11:17:27 -0400 | 
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-09-10 11:17:27 -0400 | 
| commit | 6504894be60134a66c938ffba64b57ea198c7264 (patch) | |
| tree | 47271628bbad3ccb76af67218cf6d79a6125ccd4 | |
| parent | 259857b34ee0f9cbb8af6fb66f8ac280baac7b52 (diff) | |
more baked texture debugging under DebugAvatarCompositeBaked
| -rwxr-xr-x | indra/newview/llvoavatar.cpp | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index d92caf1edb..3b98a55360 100755 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -6804,6 +6804,16 @@ void LLVOAvatar::updateMeshTextures()  				}  			}  		} +		else +		{ +			for (U32 k=0; k < mBakedTextureDatas[i].mMeshes.size(); k++) +			{ +				if (gSavedSettings.getBOOL("DebugAvatarCompositeBaked")) +				{ +					mBakedTextureDatas[i].mMeshes[k]->setColor( LLColor4::blue ); +				} +			} +		}  	}  	// set texture and color of hair manually if we are not using a baked image. | 
