OLD | NEW |
| (Empty) |
1 #include "SkPdfShadingDictionary_autogen.h" | |
2 | |
3 long SkPdfShadingDictionary::ShadingType() const { | |
4 long ret; | |
5 if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ShadingType",
"", &ret)) return ret; | |
6 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
7 return 0; | |
8 } | |
9 | |
10 std::string SkPdfShadingDictionary::getColorSpaceAsName() const { | |
11 std::string ret = ""; | |
12 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ColorSpace",
"", &ret)) return ret; | |
13 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
14 return ""; | |
15 } | |
16 | |
17 SkPdfArray* SkPdfShadingDictionary::getColorSpaceAsArray() const { | |
18 SkPdfArray* ret = NULL; | |
19 if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ColorSpace",
"", &ret)) return ret; | |
20 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
21 return NULL; | |
22 } | |
23 | |
24 SkPdfArray* SkPdfShadingDictionary::Background() const { | |
25 SkPdfArray* ret; | |
26 if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Background",
"", &ret)) return ret; | |
27 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
28 return NULL; | |
29 } | |
30 | |
31 SkRect* SkPdfShadingDictionary::BBox() const { | |
32 SkRect* ret; | |
33 if (SkRectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BBox", "",
&ret)) return ret; | |
34 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
35 return NULL; | |
36 } | |
37 | |
38 bool SkPdfShadingDictionary::AntiAlias() const { | |
39 bool ret; | |
40 if (BoolFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "AntiAlias", "
", &ret)) return ret; | |
41 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
42 return false; | |
43 } | |
OLD | NEW |