aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm/DMSrcSink.h
diff options
context:
space:
mode:
authorGravatar brianosman <brianosman@google.com>2016-03-10 07:49:08 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-10 07:49:08 -0800
commitd93c1208520376ec062c8e9b6b7e6d0eac6c6faf (patch)
tree9ac9c992ebca5ed921e0eb6a2d44e7bcb57f3e02 /dm/DMSrcSink.h
parente6d665e24feabf6c633452885910efd17e5f025e (diff)
Added (color=8888|f16|srgb) option to gpu configurations, along with gpuf16 and gpusrgb predefined configs. Runs the gpu backend in gamma-correct mode (with either FP16 linear or sRGB 8888 frambuffers).
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;
};