diff options
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/IDynamicTextureManager.cs')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IDynamicTextureManager.cs | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IDynamicTextureManager.cs b/OpenSim/Region/Environment/Interfaces/IDynamicTextureManager.cs index 727b386..05cecf8 100644 --- a/OpenSim/Region/Environment/Interfaces/IDynamicTextureManager.cs +++ b/OpenSim/Region/Environment/Interfaces/IDynamicTextureManager.cs | |||
@@ -1,17 +1,18 @@ | |||
1 | using System; | 1 | using System.IO; |
2 | using System.Collections.Generic; | 2 | using libsecondlife; |
3 | using System.Text; | 3 | |
4 | using System.IO; | ||
5 | using libsecondlife; | ||
6 | |||
7 | namespace OpenSim.Region.Environment.Interfaces | 4 | namespace OpenSim.Region.Environment.Interfaces |
8 | { | 5 | { |
9 | public interface IDynamicTextureManager | 6 | public interface IDynamicTextureManager |
10 | { | 7 | { |
11 | void RegisterRender(string handleType, IDynamicTextureRender render); | 8 | void RegisterRender(string handleType, IDynamicTextureRender render); |
12 | void ReturnData(LLUUID id, byte[] data); | 9 | void ReturnData(LLUUID id, byte[] data); |
13 | LLUUID AddDynamicTextureURL(LLUUID simID, LLUUID primID, string contentType, string url, string extraParams, int updateTimer); | 10 | |
14 | LLUUID AddDynamicTextureData(LLUUID simID, LLUUID primID, string contentType, string data, string extraParams, int updateTimer); | 11 | LLUUID AddDynamicTextureURL(LLUUID simID, LLUUID primID, string contentType, string url, string extraParams, |
12 | int updateTimer); | ||
13 | |||
14 | LLUUID AddDynamicTextureData(LLUUID simID, LLUUID primID, string contentType, string data, string extraParams, | ||
15 | int updateTimer); | ||
15 | } | 16 | } |
16 | 17 | ||
17 | public interface IDynamicTextureRender | 18 | public interface IDynamicTextureRender |
@@ -24,4 +25,4 @@ namespace OpenSim.Region.Environment.Interfaces | |||
24 | bool AsyncConvertUrl(LLUUID id, string url, string extraParams); | 25 | bool AsyncConvertUrl(LLUUID id, string url, string extraParams); |
25 | bool AsyncConvertData(LLUUID id, string bodyData, string extraParams); | 26 | bool AsyncConvertData(LLUUID id, string bodyData, string extraParams); |
26 | } | 27 | } |
27 | } | 28 | } \ No newline at end of file |