| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium 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 "skia/ext/platform_device.h" | 5 #include "skia/ext/platform_device.h" |
| 6 | 6 |
| 7 #include "skia/ext/skia_utils_win.h" | 7 #include "skia/ext/skia_utils_win.h" |
| 8 #include "third_party/skia/include/core/SkMatrix.h" | 8 #include "third_party/skia/include/core/SkMatrix.h" |
| 9 #include "third_party/skia/include/core/SkPath.h" | 9 #include "third_party/skia/include/core/SkPath.h" |
| 10 #include "third_party/skia/include/core/SkRegion.h" | 10 #include "third_party/skia/include/core/SkRegion.h" |
| 11 #include "third_party/skia/include/core/SkUtils.h" | 11 #include "third_party/skia/include/core/SkUtils.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 res = SetDCPenColor(context, RGB(0, 0, 0)); | 44 res = SetDCPenColor(context, RGB(0, 0, 0)); |
| 45 SkASSERT(res != CLR_INVALID); | 45 SkASSERT(res != CLR_INVALID); |
| 46 | 46 |
| 47 // Sets up default transparency. | 47 // Sets up default transparency. |
| 48 res = SetBkMode(context, OPAQUE); | 48 res = SetBkMode(context, OPAQUE); |
| 49 SkASSERT(res != 0); | 49 SkASSERT(res != 0); |
| 50 res = SetROP2(context, R2_COPYPEN); | 50 res = SetROP2(context, R2_COPYPEN); |
| 51 SkASSERT(res != 0); | 51 SkASSERT(res != 0); |
| 52 } | 52 } |
| 53 | 53 |
| 54 PlatformSurface PlatformDevice::BeginPlatformPaint() { | 54 PlatformDevice::PlatformDevice(const SkBitmap& bitmap) |
| 55 return 0; | 55 : SkDevice(bitmap) { |
| 56 SetPlatformDevice(this, this); |
| 56 } | 57 } |
| 57 | 58 |
| 58 void PlatformDevice::EndPlatformPaint() { | 59 void PlatformDevice::EndPlatformPaint() { |
| 59 // We don't clear the DC here since it will be likely to be used again. | 60 // We don't clear the DC here since it will be likely to be used again. |
| 60 // Flushing will be done in onAccessBitmap. | 61 // Flushing will be done in onAccessBitmap. |
| 61 } | 62 } |
| 62 | 63 |
| 63 void PlatformDevice::DrawToNativeContext(PlatformSurface surface, int x, int y, | |
| 64 const PlatformRect* src_rect) { | |
| 65 } | |
| 66 | |
| 67 // static | 64 // static |
| 68 bool PlatformDevice::LoadPathToDC(HDC context, const SkPath& path) { | 65 bool PlatformDevice::LoadPathToDC(HDC context, const SkPath& path) { |
| 69 switch (path.getFillType()) { | 66 switch (path.getFillType()) { |
| 70 case SkPath::kWinding_FillType: { | 67 case SkPath::kWinding_FillType: { |
| 71 int res = SetPolyFillMode(context, WINDING); | 68 int res = SetPolyFillMode(context, WINDING); |
| 72 SkASSERT(res != 0); | 69 SkASSERT(res != 0); |
| 73 break; | 70 break; |
| 74 } | 71 } |
| 75 case SkPath::kEvenOdd_FillType: { | 72 case SkPath::kEvenOdd_FillType: { |
| 76 int res = SetPolyFillMode(context, ALTERNATE); | 73 int res = SetPolyFillMode(context, ALTERNATE); |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 LoadPathToDC(context, path); | 226 LoadPathToDC(context, path); |
| 230 hrgn = PathToRegion(context); | 227 hrgn = PathToRegion(context); |
| 231 } | 228 } |
| 232 int result = SelectClipRgn(context, hrgn); | 229 int result = SelectClipRgn(context, hrgn); |
| 233 SkASSERT(result != ERROR); | 230 SkASSERT(result != ERROR); |
| 234 result = DeleteObject(hrgn); | 231 result = DeleteObject(hrgn); |
| 235 SkASSERT(result != 0); | 232 SkASSERT(result != 0); |
| 236 } | 233 } |
| 237 | 234 |
| 238 } // namespace skia | 235 } // namespace skia |
| 236 |
| OLD | NEW |