diff options
author | Melanie | 2009-09-30 21:23:00 +0100 |
---|---|---|
committer | Melanie | 2009-09-30 21:33:20 +0100 |
commit | 400abed271b7d59b8038326fccfe76c28d7d1051 (patch) | |
tree | 71f2fddd7ec0ccc700dfa635e7d2ddee617750c6 /OpenSim/Region/ClientStack | |
parent | Remove predecode-j2k and it's assoaciated logic (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 10 |
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 | } |