| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_canvas.h" | 5 #include "skia/ext/platform_canvas.h" |
| 6 | 6 |
| 7 #include "skia/ext/bitmap_platform_device.h" | 7 #include "skia/ext/bitmap_platform_device.h" |
| 8 #include "third_party/skia/include/core/SkTypes.h" | 8 #include "third_party/skia/include/core/SkTypes.h" |
| 9 | 9 |
| 10 namespace skia { | 10 namespace skia { |
| 11 | 11 |
| 12 PlatformCanvas::PlatformCanvas(int width, int height, bool is_opaque) { | 12 PlatformCanvas::PlatformCanvas(int width, int height, bool is_opaque) { |
| 13 setDeviceFactory(SkNEW(BitmapPlatformDeviceFactory))->unref(); | |
| 14 initialize(width, height, is_opaque); | 13 initialize(width, height, is_opaque); |
| 15 } | 14 } |
| 16 | 15 |
| 17 PlatformCanvas::PlatformCanvas(int width, | 16 PlatformCanvas::PlatformCanvas(int width, |
| 18 int height, | 17 int height, |
| 19 bool is_opaque, | 18 bool is_opaque, |
| 20 CGContextRef context) { | 19 CGContextRef context) { |
| 21 setDeviceFactory(SkNEW(BitmapPlatformDeviceFactory))->unref(); | |
| 22 initialize(context, width, height, is_opaque); | 20 initialize(context, width, height, is_opaque); |
| 23 } | 21 } |
| 24 | 22 |
| 25 PlatformCanvas::PlatformCanvas(int width, | 23 PlatformCanvas::PlatformCanvas(int width, |
| 26 int height, | 24 int height, |
| 27 bool is_opaque, | 25 bool is_opaque, |
| 28 uint8_t* data) { | 26 uint8_t* data) { |
| 29 setDeviceFactory(SkNEW(BitmapPlatformDeviceFactory))->unref(); | |
| 30 initialize(width, height, is_opaque, data); | 27 initialize(width, height, is_opaque, data); |
| 31 } | 28 } |
| 32 | 29 |
| 33 PlatformCanvas::~PlatformCanvas() { | 30 PlatformCanvas::~PlatformCanvas() { |
| 34 } | 31 } |
| 35 | 32 |
| 36 bool PlatformCanvas::initialize(int width, | 33 bool PlatformCanvas::initialize(int width, |
| 37 int height, | 34 int height, |
| 38 bool is_opaque, | 35 bool is_opaque, |
| 39 uint8_t* data) { | 36 uint8_t* data) { |
| 40 return initializeWithDevice(BitmapPlatformDevice::CreateWithData( | 37 return initializeWithDevice(BitmapPlatformDevice::CreateWithData( |
| 41 data, width, height, is_opaque)); | 38 data, width, height, is_opaque)); |
| 42 } | 39 } |
| 43 | 40 |
| 44 bool PlatformCanvas::initialize(CGContextRef context, | 41 bool PlatformCanvas::initialize(CGContextRef context, |
| 45 int width, | 42 int width, |
| 46 int height, | 43 int height, |
| 47 bool is_opaque) { | 44 bool is_opaque) { |
| 48 return initializeWithDevice(BitmapPlatformDevice::Create( | 45 return initializeWithDevice(BitmapPlatformDevice::Create( |
| 49 context, width, height, is_opaque)); | 46 context, width, height, is_opaque)); |
| 50 } | 47 } |
| 51 | 48 |
| 52 } // namespace skia | 49 } // namespace skia |
| OLD | NEW |