OLD | NEW |
1 | |
2 /* | 1 /* |
3 * Copyright 2010 The Android Open Source Project | 2 * Copyright 2010 The Android Open Source Project |
4 * | 3 * |
5 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
7 */ | 6 */ |
8 | 7 |
9 | 8 |
10 #include "SkPDFFormXObject.h" | 9 #include "SkPDFFormXObject.h" |
11 | 10 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 group->insertName("S", "Transparency"); | 68 group->insertName("S", "Transparency"); |
70 | 69 |
71 if (colorSpace != nullptr) { | 70 if (colorSpace != nullptr) { |
72 group->insertName("CS", colorSpace); | 71 group->insertName("CS", colorSpace); |
73 } | 72 } |
74 group->insertBool("I", true); // Isolated. | 73 group->insertBool("I", true); // Isolated. |
75 this->insertObject("Group", std::move(group)); | 74 this->insertObject("Group", std::move(group)); |
76 } | 75 } |
77 | 76 |
78 SkPDFFormXObject::~SkPDFFormXObject() {} | 77 SkPDFFormXObject::~SkPDFFormXObject() {} |
OLD | NEW |