aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/AvatarFactory
diff options
context:
space:
mode:
authorUbitUmarov2014-08-13 20:43:26 +0100
committerUbitUmarov2014-08-13 20:43:26 +0100
commit1bd13155e682aed90e27946290b3673938a15b8c (patch)
treecacf044da41444a3db899c2355503610b1c36d69 /OpenSim/Region/CoreModules/Avatar/AvatarFactory
parent remove creative hack and try to fix (diff)
downloadopensim-SC_OLD-1bd13155e682aed90e27946290b3673938a15b8c.zip
opensim-SC_OLD-1bd13155e682aed90e27946290b3673938a15b8c.tar.gz
opensim-SC_OLD-1bd13155e682aed90e27946290b3673938a15b8c.tar.bz2
opensim-SC_OLD-1bd13155e682aed90e27946290b3673938a15b8c.tar.xz
put back baked textures debug msgs at start of validatebaked...
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/AvatarFactory')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs b/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs
index 2290c44..e34bac9 100644
--- a/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs
+++ b/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs
@@ -492,6 +492,18 @@ namespace OpenSim.Region.CoreModules.Avatar.AvatarFactory
492 492
493 wearableCache = WearableCacheItem.GetDefaultCacheItem(); 493 wearableCache = WearableCacheItem.GetDefaultCacheItem();
494 494
495
496 m_log.DebugFormat("[AVFACTORY]: ValidateBakedTextureCache start for {0} {1}", sp.Name, sp.UUID);
497 // debug
498 for (int iter = 0; iter < AvatarAppearance.BAKE_INDICES.Length; iter++)
499 {
500 int j = AvatarAppearance.BAKE_INDICES[iter];
501 Primitive.TextureEntryFace face = sp.Appearance.Texture.FaceTextures[iter];
502 if (face != null)
503 m_log.Debug("[ValidateBakedCache] {" + iter + "/" + j + " t - " + face.TextureID);
504 else
505 m_log.Debug("[ValidateBakedCache] {" + iter + "/" + j + " t - No texture");
506 }
495 507
496 bool gotbacked = false; 508 bool gotbacked = false;
497 509