| Index: src/pdf/SkPDFGraphicState.cpp
|
| diff --git a/src/pdf/SkPDFGraphicState.cpp b/src/pdf/SkPDFGraphicState.cpp
|
| index 5a603ce8da4f1f571650a5b28bd866cadd86f9e4..a78c4c51b581c352c06d6501c8166f5c16f34e88 100644
|
| --- a/src/pdf/SkPDFGraphicState.cpp
|
| +++ b/src/pdf/SkPDFGraphicState.cpp
|
| @@ -176,8 +176,7 @@ sk_sp<SkPDFDict> SkPDFGraphicState::MakeNoSmaskGraphicState() {
|
|
|
| void SkPDFGraphicState::emitObject(
|
| SkWStream* stream,
|
| - const SkPDFObjNumMap& objNumMap,
|
| - const SkPDFSubstituteMap& substitutes) const {
|
| + const SkPDFObjNumMap& objNumMap) const {
|
| auto dict = sk_make_sp<SkPDFDict>("ExtGState");
|
| dict->insertName("Type", "ExtGState");
|
|
|
| @@ -207,5 +206,5 @@ void SkPDFGraphicState::emitObject(
|
| dict->insertScalar("ML", fStrokeMiter);
|
| dict->insertBool("SA", true); // SA = Auto stroke adjustment.
|
| dict->insertName("BM", as_blend_mode(xferMode));
|
| - dict->emitObject(stream, objNumMap, substitutes);
|
| + dict->emitObject(stream, objNumMap);
|
| }
|
|
|