diff options
author | UbitUmarov | 2018-07-14 15:13:21 +0100 |
---|---|---|
committer | UbitUmarov | 2018-07-14 15:13:21 +0100 |
commit | 84235900b284e7377b802a626f64edaaec39159a (patch) | |
tree | 02de5d39ed8a5a17103b54607a9af9a4e73838e0 /OpenSim/Region/CoreModules/Scripting/DynamicTexture | |
parent | add missing xml escape (diff) | |
download | opensim-SC-84235900b284e7377b802a626f64edaaec39159a.zip opensim-SC-84235900b284e7377b802a626f64edaaec39159a.tar.gz opensim-SC-84235900b284e7377b802a626f64edaaec39159a.tar.bz2 opensim-SC-84235900b284e7377b802a626f64edaaec39159a.tar.xz |
do not use lossless compression on dyntextures
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting/DynamicTexture')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/DynamicTexture/DynamicTextureModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/DynamicTexture/DynamicTextureModule.cs b/OpenSim/Region/CoreModules/Scripting/DynamicTexture/DynamicTextureModule.cs index 090cb7d..00c4682 100644 --- a/OpenSim/Region/CoreModules/Scripting/DynamicTexture/DynamicTextureModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/DynamicTexture/DynamicTextureModule.cs | |||
@@ -588,7 +588,7 @@ namespace OpenSim.Region.CoreModules.Scripting.DynamicTexture | |||
588 | 588 | ||
589 | try | 589 | try |
590 | { | 590 | { |
591 | result = OpenJPEG.EncodeFromImage(joint, true); | 591 | result = OpenJPEG.EncodeFromImage(joint, false); |
592 | } | 592 | } |
593 | catch (Exception e) | 593 | catch (Exception e) |
594 | { | 594 | { |