aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
authorMelanie2009-09-30 21:23:00 +0100
committerMelanie2009-09-30 21:33:20 +0100
commit400abed271b7d59b8038326fccfe76c28d7d1051 (patch)
tree71f2fddd7ec0ccc700dfa635e7d2ddee617750c6 /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
parentRemove predecode-j2k and it's assoaciated logic (diff)
downloadopensim-SC_OLD-400abed271b7d59b8038326fccfe76c28d7d1051.zip
opensim-SC_OLD-400abed271b7d59b8038326fccfe76c28d7d1051.tar.gz
opensim-SC_OLD-400abed271b7d59b8038326fccfe76c28d7d1051.tar.bz2
opensim-SC_OLD-400abed271b7d59b8038326fccfe76c28d7d1051.tar.xz
Add RebakeAvatarTexturesPacket to the client view
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index f6ae639..dae525d 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -11023,5 +11023,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP
11023 } 11023 }
11024 11024
11025 #endregion 11025 #endregion
11026
11027 public void SendRebakeAvatarTextures(UUID textureID)
11028 {
11029 RebakeAvatarTexturesPacket pack =
11030 (RebakeAvatarTexturesPacket)PacketPool.Instance.GetPacket(PacketType.RebakeAvatarTextures);
11031
11032 pack.TextureData = new RebakeAvatarTexturesPacket.TextureDataBlock();
11033 pack.TextureData.TextureID = textureID;
11034 OutPacket(pack, ThrottleOutPacketType.Task);
11035 }
11026 } 11036 }
11027} 11037}