aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/codec
diff options
context:
space:
mode:
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;
};
/**