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" | |
36 #include "SkPathOps.h" | 35 #include "SkPathOps.h" |
37 #include "SkPoint.h" | 36 #include "SkPoint.h" |
38 #include "SkRasterizer.h" | 37 #include "SkRasterizer.h" |
39 #include "SkSFNTHeader.h" | 38 #include "SkSFNTHeader.h" |
40 #include "SkShader.h" | 39 #include "SkShader.h" |
41 #include "SkSize.h" | 40 #include "SkSize.h" |
42 #include "SkStream.h" | 41 #include "SkStream.h" |
43 #include "SkTDArray.h" | 42 #include "SkTDArray.h" |
44 #include "SkTLazy.h" | 43 #include "SkTLazy.h" |
45 #include "SkTScopedComPtr.h" | 44 #include "SkTScopedComPtr.h" |
(...skipping 2213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2259 //SkXPSDevice* dev = new SkXPSDevice(this); | 2258 //SkXPSDevice* dev = new SkXPSDevice(this); |
2260 //SkSize s = SkSize::Make(width, height); | 2259 //SkSize s = SkSize::Make(width, height); |
2261 //dev->BeginCanvas(s, s, SkMatrix::I()); | 2260 //dev->BeginCanvas(s, s, SkMatrix::I()); |
2262 //return dev; | 2261 //return dev; |
2263 } | 2262 } |
2264 #endif | 2263 #endif |
2265 return new SkXPSDevice(this->fXpsFactory.get()); | 2264 return new SkXPSDevice(this->fXpsFactory.get()); |
2266 } | 2265 } |
2267 | 2266 |
2268 #endif//defined(SK_BUILD_FOR_WIN32) | 2267 #endif//defined(SK_BUILD_FOR_WIN32) |
OLD | NEW |