| 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 #include "core/include/fxge/fx_ge.h" | 5 #include "core/include/fxge/fx_ge.h" |
| 6 | 6 |
| 7 #if defined(_SKIA_SUPPORT_) | 7 #if defined(_SKIA_SUPPORT_) |
| 8 #include "core/include/fxcodec/fx_codec.h" | 8 #include "core/include/fxcodec/fx_codec.h" |
| 9 | 9 |
| 10 #include "core/src/fxge/agg/include/fx_agg_driver.h" | 10 #include "core/src/fxge/agg/fx_agg_driver.h" |
| 11 #include "core/src/fxge/skia/fx_skia_device.h" | 11 #include "core/src/fxge/skia/fx_skia_device.h" |
| 12 | 12 |
| 13 #include "SkCanvas.h" | 13 #include "SkCanvas.h" |
| 14 #include "SkDashPathEffect.h" | 14 #include "SkDashPathEffect.h" |
| 15 #include "SkPaint.h" | 15 #include "SkPaint.h" |
| 16 #include "SkPath.h" | 16 #include "SkPath.h" |
| 17 | 17 |
| 18 static SkPath BuildPath(const CFX_PathData* pPathData, | 18 static SkPath BuildPath(const CFX_PathData* pPathData, |
| 19 const CFX_Matrix* pObject2Device) { | 19 const CFX_Matrix* pObject2Device) { |
| 20 SkPath skPath; | 20 SkPath skPath; |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 void SkDebugf(const char format[], ...) { | 417 void SkDebugf(const char format[], ...) { |
| 418 va_list args; | 418 va_list args; |
| 419 va_start(args, format); | 419 va_start(args, format); |
| 420 vfprintf(stderr, format, args); | 420 vfprintf(stderr, format, args); |
| 421 va_end(args); | 421 va_end(args); |
| 422 } | 422 } |
| 423 | 423 |
| 424 #endif | 424 #endif |
| 425 | 425 |
| 426 #endif | 426 #endif |
| OLD | NEW |