OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 |
| 7 #include "core/fpdfapi/fpdf_page/cpdf_graphicstates.h" |
| 8 |
| 9 void CPDF_GraphicStates::DefaultStates() { |
| 10 m_ColorState.New()->Default(); |
| 11 } |
| 12 |
| 13 void CPDF_GraphicStates::CopyStates(const CPDF_GraphicStates& src) { |
| 14 m_ClipPath = src.m_ClipPath; |
| 15 m_GraphState = src.m_GraphState; |
| 16 m_ColorState = src.m_ColorState; |
| 17 m_TextState = src.m_TextState; |
| 18 m_GeneralState = src.m_GeneralState; |
| 19 } |
OLD | NEW |