diff options
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IDynamicTextureManager.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IDynamicTextureManager.cs b/OpenSim/Region/Framework/Interfaces/IDynamicTextureManager.cs index e119bc3..9b29209 100644 --- a/OpenSim/Region/Framework/Interfaces/IDynamicTextureManager.cs +++ b/OpenSim/Region/Framework/Interfaces/IDynamicTextureManager.cs | |||
@@ -43,6 +43,8 @@ namespace OpenSim.Region.Framework.Interfaces | |||
43 | int updateTimer); | 43 | int updateTimer); |
44 | UUID AddDynamicTextureData(UUID simID, UUID primID, string contentType, string data, string extraParams, | 44 | UUID AddDynamicTextureData(UUID simID, UUID primID, string contentType, string data, string extraParams, |
45 | int updateTimer, bool SetBlending, byte AlphaValue); | 45 | int updateTimer, bool SetBlending, byte AlphaValue); |
46 | void GetDrawStringSize(string contentType, string text, string fontName, int fontSize, | ||
47 | out double xSize, out double ySize); | ||
46 | } | 48 | } |
47 | 49 | ||
48 | public interface IDynamicTextureRender | 50 | public interface IDynamicTextureRender |
@@ -54,5 +56,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
54 | byte[] ConvertStream(Stream data, string extraParams); | 56 | byte[] ConvertStream(Stream data, string extraParams); |
55 | bool AsyncConvertUrl(UUID id, string url, string extraParams); | 57 | bool AsyncConvertUrl(UUID id, string url, string extraParams); |
56 | bool AsyncConvertData(UUID id, string bodyData, string extraParams); | 58 | bool AsyncConvertData(UUID id, string bodyData, string extraParams); |
59 | void GetDrawStringSize(string text, string fontName, int fontSize, | ||
60 | out double xSize, out double ySize); | ||
57 | } | 61 | } |
58 | } | 62 | } |