aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/codec
diff options
context:
space:
mode:
authorGravatar Brian Osman <brianosman@google.com>2018-07-16 13:06:02 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-07-17 14:18:20 +0000
commitf6db495d2d3d1d535c51048a06091706e74f48f4 (patch)
tree25305955c263d2101c0350e58b3881e2368ed2db /include/codec
parent9b4bd599015445dbbfb85af3159404c1c5c21bc4 (diff)
Remove SkTransferFunctionBehavior
Bug: skia: Change-Id: Iccbe609b2a8d4c9098ef36aa6530dbc3771e0c11 Reviewed-on: https://skia-review.googlesource.com/141055 Reviewed-by: Leon Scroggins <scroggo@google.com> Commit-Queue: Brian Osman <brianosman@google.com>
Diffstat (limited to 'include/codec')
-rw-r--r--include/codec/SkCodec.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/codec/SkCodec.h b/include/codec/SkCodec.h
index c156efb052..36f557e603 100644
--- a/include/codec/SkCodec.h
+++ b/include/codec/SkCodec.h
@@ -252,7 +252,6 @@ public:
, fSubset(nullptr)
, fFrameIndex(0)
, fPriorFrame(kNone)
- , fPremulBehavior(SkTransferFunctionBehavior::kIgnore)
{}
ZeroInitialized fZeroInitialized;
@@ -296,14 +295,6 @@ public:
* If set to kNone, the codec will decode any necessary required frame(s) first.
*/
int fPriorFrame;
-
- /**
- * Indicates whether we should do a linear premultiply or a legacy premultiply.
- *
- * In the case where the dst SkColorSpace is nullptr, this flag is ignored and
- * we will always do a legacy premultiply.
- */
- SkTransferFunctionBehavior fPremulBehavior;
};
/**