| OLD | NEW |
| 1 #ifndef __DEFINED__SkPdfBasics | 1 #ifndef __DEFINED__SkPdfBasics |
| 2 #define __DEFINED__SkPdfBasics | 2 #define __DEFINED__SkPdfBasics |
| 3 | 3 |
| 4 #include "podofo.h" | 4 #include "podofo.h" |
| 5 using namespace PoDoFo; | 5 using namespace PoDoFo; |
| 6 | 6 |
| 7 #include "SkCanvas.h" | 7 #include "SkCanvas.h" |
| 8 #include "SkPaint.h" | 8 #include "SkPaint.h" |
| 9 | 9 |
| 10 #include <iostream> | 10 #include <iostream> |
| 11 #include <cstdio> | 11 #include <cstdio> |
| 12 #include <stack> | 12 #include <stack> |
| 13 | 13 |
| 14 //#define PDF_TRACE | 14 #define PDF_TRACE |
| 15 //#define PDF_TRACE_DIFF_IN_PNG | 15 //#define PDF_TRACE_DIFF_IN_PNG |
| 16 //#define PDF_DEBUG_NO_CLIPING | 16 //#define PDF_DEBUG_NO_CLIPING |
| 17 //#define PDF_DEBUG_NO_PAGE_CLIPING | 17 //#define PDF_DEBUG_NO_PAGE_CLIPING |
| 18 //#define PDF_DEBUG_3X | 18 //#define PDF_DEBUG_3X |
| 19 | 19 |
| 20 class SkPdfFont; | 20 class SkPdfFont; |
| 21 class SkPdfDoc; | 21 class SkPdfDoc; |
| 22 class SkPdfObject; | 22 class SkPdfObject; |
| 23 class SkPdfResourceDictionary; | 23 class SkPdfResourceDictionary; |
| 24 | 24 |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 kPartial_PdfResult, | 132 kPartial_PdfResult, |
| 133 kNYI_PdfResult, | 133 kNYI_PdfResult, |
| 134 kIgnoreError_PdfResult, | 134 kIgnoreError_PdfResult, |
| 135 kError_PdfResult, | 135 kError_PdfResult, |
| 136 kUnsupported_PdfResult, | 136 kUnsupported_PdfResult, |
| 137 | 137 |
| 138 kCount_PdfResult | 138 kCount_PdfResult |
| 139 }; | 139 }; |
| 140 | 140 |
| 141 #endif // __DEFINED__SkPdfBasics | 141 #endif // __DEFINED__SkPdfBasics |
| OLD | NEW |