| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
| 3 * | 3 * |
| 4 * 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 |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkTypes.h" | 8 #include "SkTypes.h" |
| 9 #if defined(SK_BUILD_FOR_WIN32) | 9 #if defined(SK_BUILD_FOR_WIN32) |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #include "SkDraw.h" | 25 #include "SkDraw.h" |
| 26 #include "SkEndian.h" | 26 #include "SkEndian.h" |
| 27 #include "SkFindAndPlaceGlyph.h" | 27 #include "SkFindAndPlaceGlyph.h" |
| 28 #include "SkGeometry.h" | 28 #include "SkGeometry.h" |
| 29 #include "SkGlyphCache.h" | 29 #include "SkGlyphCache.h" |
| 30 #include "SkHRESULT.h" | 30 #include "SkHRESULT.h" |
| 31 #include "SkImageEncoder.h" | 31 #include "SkImageEncoder.h" |
| 32 #include "SkIStream.h" | 32 #include "SkIStream.h" |
| 33 #include "SkMaskFilter.h" | 33 #include "SkMaskFilter.h" |
| 34 #include "SkPaint.h" | 34 #include "SkPaint.h" |
| 35 #include "SkPathEffect.h" |
| 35 #include "SkPathOps.h" | 36 #include "SkPathOps.h" |
| 36 #include "SkPoint.h" | 37 #include "SkPoint.h" |
| 37 #include "SkRasterizer.h" | 38 #include "SkRasterizer.h" |
| 38 #include "SkSFNTHeader.h" | 39 #include "SkSFNTHeader.h" |
| 39 #include "SkShader.h" | 40 #include "SkShader.h" |
| 40 #include "SkSize.h" | 41 #include "SkSize.h" |
| 41 #include "SkStream.h" | 42 #include "SkStream.h" |
| 42 #include "SkTDArray.h" | 43 #include "SkTDArray.h" |
| 43 #include "SkTLazy.h" | 44 #include "SkTLazy.h" |
| 44 #include "SkTScopedComPtr.h" | 45 #include "SkTScopedComPtr.h" |
| (...skipping 2213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2258 //SkXPSDevice* dev = new SkXPSDevice(this); | 2259 //SkXPSDevice* dev = new SkXPSDevice(this); |
| 2259 //SkSize s = SkSize::Make(width, height); | 2260 //SkSize s = SkSize::Make(width, height); |
| 2260 //dev->BeginCanvas(s, s, SkMatrix::I()); | 2261 //dev->BeginCanvas(s, s, SkMatrix::I()); |
| 2261 //return dev; | 2262 //return dev; |
| 2262 } | 2263 } |
| 2263 #endif | 2264 #endif |
| 2264 return new SkXPSDevice(this->fXpsFactory.get()); | 2265 return new SkXPSDevice(this->fXpsFactory.get()); |
| 2265 } | 2266 } |
| 2266 | 2267 |
| 2267 #endif//defined(SK_BUILD_FOR_WIN32) | 2268 #endif//defined(SK_BUILD_FOR_WIN32) |
| OLD | NEW |