blob: d82cbb198e3b1a6b7e4c9a6ea36da7b8e66fadd6 (
plain)
1
2
3
4
5
6
7
8
|
#include "SkPdfSoftMaskImageDictionary_autogen.h"
SkPdfArray* SkPdfSoftMaskImageDictionary::Matte() const {
SkPdfArray* ret;
if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Matte", "", &ret)) return ret;
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
|