diff options
author | ruslantproductengine <ruslantproductengine@lindenlab.com> | 2014-09-25 21:19:17 +0300 |
---|---|---|
committer | ruslantproductengine <ruslantproductengine@lindenlab.com> | 2014-09-25 21:19:17 +0300 |
commit | 41170b5603f9d6e6d6a9ec598ab60b9b74315b32 (patch) | |
tree | e2d8e81bff25fce55087ea877ad0b11aaa687b1a /indra/llimage/llimage.h | |
parent | 5033f6b14b9a2156b36cbce52365f6b420c72fd2 (diff) |
MAINT-4329 FIXED scales each image *twice* for no apparent reason : patchset #2
Diffstat (limited to 'indra/llimage/llimage.h')
-rwxr-xr-x | indra/llimage/llimage.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/llimage/llimage.h b/indra/llimage/llimage.h index cd3f76f1fd..eeb8e6de53 100755 --- a/indra/llimage/llimage.h +++ b/indra/llimage/llimage.h @@ -229,7 +229,7 @@ public: void copy( LLImageRaw* src ); // Src and dst are same size. Src and dst have same number of components. - void copyUnscaled( LLImageRaw* src ); + void copyUnscaled( const LLImageRaw* src ); // Src and dst are same size. Src has 4 components. Dst has 3 components. void copyUnscaled4onto3( LLImageRaw* src ); @@ -243,7 +243,7 @@ public: void copyUnscaledAlphaMask( LLImageRaw* src, const LLColor4U& fill); // Src and dst can be any size. Src and dst have same number of components. - void copyScaled( LLImageRaw* src ); + void copyScaled( const LLImageRaw* src ); // Src and dst can be any size. Src has 3 components. Dst has 4 components. void copyScaled3onto4( LLImageRaw* src ); @@ -255,13 +255,13 @@ public: // Composite operations // Src and dst can be any size. Src and dst can each have 3 or 4 components. - void composite( LLImageRaw* src ); + void composite( const LLImageRaw* src ); // Src and dst can be any size. Src has 4 components. Dst has 3 components. - void compositeScaled4onto3( LLImageRaw* src ); + void compositeScaled4onto3( const LLImageRaw* src ); // Src and dst are same size. Src has 4 components. Dst has 3 components. - void compositeUnscaled4onto3( LLImageRaw* src ); + void compositeUnscaled4onto3( const LLImageRaw* src ); protected: // Create an image from a local file (generally used in tools) |