diff options
author | UbitUmarov | 2014-08-06 05:17:30 +0100 |
---|---|---|
committer | UbitUmarov | 2014-08-06 05:17:30 +0100 |
commit | 66dea8fe05dbf0f9783f520cddf4d3aa700015d6 (patch) | |
tree | fcc1456c8ea5d4f03574a962eae719daf31fe08a /OpenSim/Region/ClientStack | |
parent | try to make the baked textures cache work (diff) | |
download | opensim-SC-66dea8fe05dbf0f9783f520cddf4d3aa700015d6.zip opensim-SC-66dea8fe05dbf0f9783f520cddf4d3aa700015d6.tar.gz opensim-SC-66dea8fe05dbf0f9783f520cddf4d3aa700015d6.tar.bz2 opensim-SC-66dea8fe05dbf0f9783f520cddf4d3aa700015d6.tar.xz |
some debug to remove later
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/Caps/UploadBakedTextureModule.cs | 6 | ||||
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/UploadBakedTextureModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/UploadBakedTextureModule.cs index 47988dd..19afe97 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/UploadBakedTextureModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/UploadBakedTextureModule.cs | |||
@@ -268,6 +268,12 @@ namespace OpenSim.Region.ClientStack.Linden | |||
268 | } | 268 | } |
269 | } | 269 | } |
270 | } | 270 | } |
271 | |||
272 | for (int iter = 0; iter < maxCacheitemsLoop; iter++) | ||
273 | { | ||
274 | m_log.Debug("[CacheitemsLeaving] {" + iter + "/" + cacheItems[iter].TextureIndex + "}: c-" + cacheItems[iter].CacheId + ", t-" + | ||
275 | cacheItems[iter].TextureID); | ||
276 | } | ||
271 | } | 277 | } |
272 | 278 | ||
273 | public void PostInitialise() | 279 | public void PostInitialise() |
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 7f25f78..0e8c7ca 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -12041,6 +12041,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
12041 | { | 12041 | { |
12042 | if (bakedTextureModule != null) | 12042 | if (bakedTextureModule != null) |
12043 | { | 12043 | { |
12044 | m_log.Debug("[ HandleAgentTextureCached] bakedTextureModule"); | ||
12044 | try | 12045 | try |
12045 | { | 12046 | { |
12046 | if (p.Appearance.WearableCacheItemsDirty) | 12047 | if (p.Appearance.WearableCacheItemsDirty) |
@@ -12072,7 +12073,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
12072 | } | 12073 | } |
12073 | } | 12074 | } |
12074 | } | 12075 | } |
12075 | else if (p.Appearance.WearableCacheItems != null) | 12076 | |
12077 | if (p.Appearance.WearableCacheItems != null) | ||
12076 | { | 12078 | { |
12077 | cacheItems = p.Appearance.WearableCacheItems; | 12079 | cacheItems = p.Appearance.WearableCacheItems; |
12078 | } | 12080 | } |