diff options
author | ruslantproductengine <ruslantproductengine@lindenlab.com> | 2015-02-14 00:08:39 +0200 |
---|---|---|
committer | ruslantproductengine <ruslantproductengine@lindenlab.com> | 2015-02-14 00:08:39 +0200 |
commit | 96e5fc9f9b185f846b978984c673f0114409513d (patch) | |
tree | 12939e3f05e144c9ddf93c334684872da73d4a43 /indra/llimage/llimage.h | |
parent | 7973d66a609c9926f64d0d4ddfbec65ebf5551d9 (diff) |
MAINT-4329 Backed out changeset: fd3a4d5c2cf5
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 eeb8e6de53..cd3f76f1fd 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( const LLImageRaw* src ); + void copyUnscaled( 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( const LLImageRaw* src ); + void copyScaled( 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( const LLImageRaw* src ); + void composite( LLImageRaw* src ); // Src and dst can be any size. Src has 4 components. Dst has 3 components. - void compositeScaled4onto3( const LLImageRaw* src ); + void compositeScaled4onto3( LLImageRaw* src ); // Src and dst are same size. Src has 4 components. Dst has 3 components. - void compositeUnscaled4onto3( const LLImageRaw* src ); + void compositeUnscaled4onto3( LLImageRaw* src ); protected: // Create an image from a local file (generally used in tools) |