| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "../../../include/fpdfapi/fpdf_render.h" | 7 #include "render_int.h" |
| 8 #include "../../../include/fpdfapi/fpdf_pageobj.h" | 8 |
| 9 #include "../../../include/fxge/fx_ge.h" | |
| 10 #include "../fpdf_page/pageint.h" | 9 #include "../fpdf_page/pageint.h" |
| 11 #include "render_int.h" | 10 #include "core/include/fpdfapi/fpdf_pageobj.h" |
| 11 #include "core/include/fpdfapi/fpdf_render.h" |
| 12 #include "core/include/fxge/fx_ge.h" |
| 13 |
| 12 #define SHADING_STEPS 256 | 14 #define SHADING_STEPS 256 |
| 13 static void DrawAxialShading(CFX_DIBitmap* pBitmap, | 15 static void DrawAxialShading(CFX_DIBitmap* pBitmap, |
| 14 CFX_AffineMatrix* pObject2Bitmap, | 16 CFX_AffineMatrix* pObject2Bitmap, |
| 15 CPDF_Dictionary* pDict, | 17 CPDF_Dictionary* pDict, |
| 16 CPDF_Function** pFuncs, | 18 CPDF_Function** pFuncs, |
| 17 int nFuncs, | 19 int nFuncs, |
| 18 CPDF_ColorSpace* pCS, | 20 CPDF_ColorSpace* pCS, |
| 19 int alpha) { | 21 int alpha) { |
| 20 ASSERT(pBitmap->GetFormat() == FXDIB_Argb); | 22 ASSERT(pBitmap->GetFormat() == FXDIB_Argb); |
| 21 CPDF_Array* pCoords = pDict->GetArray(FX_BSTRC("Coords")); | 23 CPDF_Array* pCoords = pDict->GetArray(FX_BSTRC("Coords")); |
| (...skipping 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1207 } | 1209 } |
| 1208 } | 1210 } |
| 1209 if (bStroke) { | 1211 if (bStroke) { |
| 1210 CPDF_Color& StrokeColor = *pPathObj->m_ColorState.GetStrokeColor(); | 1212 CPDF_Color& StrokeColor = *pPathObj->m_ColorState.GetStrokeColor(); |
| 1211 if (StrokeColor.m_pCS && StrokeColor.m_pCS->GetFamily() == PDFCS_PATTERN) { | 1213 if (StrokeColor.m_pCS && StrokeColor.m_pCS->GetFamily() == PDFCS_PATTERN) { |
| 1212 DrawPathWithPattern(pPathObj, pObj2Device, &StrokeColor, TRUE); | 1214 DrawPathWithPattern(pPathObj, pObj2Device, &StrokeColor, TRUE); |
| 1213 bStroke = FALSE; | 1215 bStroke = FALSE; |
| 1214 } | 1216 } |
| 1215 } | 1217 } |
| 1216 } | 1218 } |
| OLD | NEW |