summaryrefslogtreecommitdiff
path: root/indra/llimage/llimage.h
diff options
context:
space:
mode:
authorruslantproductengine <ruslantproductengine@lindenlab.com>2015-02-13 20:05:48 +0200
committerruslantproductengine <ruslantproductengine@lindenlab.com>2015-02-13 20:05:48 +0200
commit4042617479d95671cea291e814fdcca3ba6e0d0d (patch)
treee6daff1a7571bc3a8389c0e9d72aa92aaf18a5dd /indra/llimage/llimage.h
parent5724d58f342dbdccdad368b04ac61294437d108b (diff)
MAINT-4329 Backed out changeset: fd3a4d5c2cf5
Diffstat (limited to 'indra/llimage/llimage.h')
-rwxr-xr-xindra/llimage/llimage.h10
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)