aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm/DMSrcSink.h
diff options
context:
space:
mode:
Diffstat (limited to 'dm/DMSrcSink.h')
-rw-r--r--dm/DMSrcSink.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/dm/DMSrcSink.h b/dm/DMSrcSink.h
index b6ee5f09d7..1a56e817ca 100644
--- a/dm/DMSrcSink.h
+++ b/dm/DMSrcSink.h
@@ -233,7 +233,8 @@ public:
class GPUSink : public Sink {
public:
GPUSink(GrContextFactory::GLContextType, GrContextFactory::GLContextOptions,
- int samples, bool diText, bool threaded);
+ int samples, bool diText, SkColorType colorType, SkColorProfileType profileType,
+ bool threaded);
Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
bool serial() const override { return !fThreaded; }
@@ -244,6 +245,8 @@ private:
GrContextFactory::GLContextOptions fContextOptions;
int fSampleCount;
bool fUseDIText;
+ SkColorType fColorType;
+ SkColorProfileType fProfileType;
bool fThreaded;
};