aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2009-09-24 17:21:05 +0000
committerGravatar reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2009-09-24 17:21:05 +0000
commitbb9aea999c29a45fcac3fdb9ecd4a45b65f603cb (patch)
treea1bdb5197ba9b9410581843c0a0c1f148d0f6b41 /include
parent3bbac13902257225beeeb6a25e70bda5f6c4da0c (diff)
record dither setting so we can replay it when we (re)decode
git-svn-id: http://skia.googlecode.com/svn/trunk@368 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r--include/images/SkImageRef.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/images/SkImageRef.h b/include/images/SkImageRef.h
index 6ab6e525ff..9c9896f6fc 100644
--- a/include/images/SkImageRef.h
+++ b/include/images/SkImageRef.h
@@ -43,6 +43,10 @@ public:
*/
SkImageRef(SkStream*, SkBitmap::Config config, int sampleSize = 1);
virtual ~SkImageRef();
+
+ /** this value is passed onto the decoder. Default is true
+ */
+ void setDitherImage(bool dither) { fDoDither = dither; }
/** Return true if the image can be decoded. If so, and bitmap is non-null,
call its setConfig() with the corresponding values, but explicitly will
@@ -89,6 +93,7 @@ private:
SkStream* fStream;
SkBitmap::Config fConfig;
int fSampleSize;
+ bool fDoDither;
bool fErrorInDecoding;
friend class SkImageRefPool;