Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Side by Side Diff: skia/ext/platform_canvas_mac.cc

Issue 6064007: Allow the creation of a skia::PlatformCanvas from a CGContextRef. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2008 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_canvas.h" 5 #include "skia/ext/platform_canvas.h"
6 6
7 #include "skia/ext/bitmap_platform_device_mac.h" 7 #include "skia/ext/bitmap_platform_device_mac.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 : SkCanvas(SkNEW(BitmapPlatformDeviceFactory)) { 13 : SkCanvas(SkNEW(BitmapPlatformDeviceFactory)) {
14 initialize(width, height, is_opaque); 14 initialize(width, height, is_opaque);
15 } 15 }
16 16
17 PlatformCanvas::PlatformCanvas(int width, 17 PlatformCanvas::PlatformCanvas(int width,
18 int height, 18 int height,
19 bool is_opaque, 19 bool is_opaque,
20 CGContextRef context) 20 CGContextRef context)
21 : SkCanvas(SkNEW(BitmapPlatformDeviceFactory)) { 21 : SkCanvas(SkNEW(BitmapPlatformDeviceFactory)) {
22 initialize(width, height, is_opaque); 22 initialize(context, width, height, is_opaque);
23 } 23 }
24 24
25 PlatformCanvas::PlatformCanvas(int width, 25 PlatformCanvas::PlatformCanvas(int width,
26 int height, 26 int height,
27 bool is_opaque, 27 bool is_opaque,
28 uint8_t* data) 28 uint8_t* data)
29 : SkCanvas(SkNEW(BitmapPlatformDeviceFactory)) { 29 : SkCanvas(SkNEW(BitmapPlatformDeviceFactory)) {
30 initialize(width, height, is_opaque, data); 30 initialize(width, height, is_opaque, data);
31 } 31 }
32 32
33 PlatformCanvas::~PlatformCanvas() { 33 PlatformCanvas::~PlatformCanvas() {
34 } 34 }
35 35
36 bool PlatformCanvas::initialize(int width, 36 bool PlatformCanvas::initialize(int width,
37 int height, 37 int height,
38 bool is_opaque, 38 bool is_opaque,
39 uint8_t* data) { 39 uint8_t* data) {
40 SkDevice* device = BitmapPlatformDevice::CreateWithData(data, width, height, 40 return initialize(BitmapPlatformDevice::CreateWithData(data, width, height,
41 is_opaque); 41 is_opaque));
42 }
43
44 bool PlatformCanvas::initialize(CGContextRef context,
45 int width,
46 int height,
47 bool is_opaque) {
48 return initialize(BitmapPlatformDevice::Create(context, width, height,
49 is_opaque));
50 }
51
52 bool PlatformCanvas::initialize(SkDevice* device) {
42 if (!device) 53 if (!device)
43 return false; 54 return false;
44 55
45 setDevice(device); 56 setDevice(device);
46 device->unref(); // Was created with refcount 1, and setDevice also refs. 57 device->unref(); // Was created with refcount 1, and setDevice also refs.
47 return true; 58 return true;
48 } 59 }
49 60
50 CGContextRef PlatformCanvas::beginPlatformPaint() { 61 CGContextRef PlatformCanvas::beginPlatformPaint() {
51 return getTopPlatformDevice().GetBitmapContext(); 62 return getTopPlatformDevice().GetBitmapContext();
52 } 63 }
53 64
54 void PlatformCanvas::endPlatformPaint() { 65 void PlatformCanvas::endPlatformPaint() {
55 // Flushing will be done in onAccessBitmap. 66 // Flushing will be done in onAccessBitmap.
56 } 67 }
57 68
58 } // namespace skia 69 } // namespace skia
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698