1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "skia/ext/platform_canvas.h"
#include "base/debug/trace_event.h"
#include "skia/ext/bitmap_platform_device.h"
// TODO(reveman): a lot of unnecessary duplication of code from
// platform_canvas_[win|linux|mac].cc in here. Need to refactor
// PlatformCanvas to avoid this:
// http://code.google.com/p/chromium/issues/detail?id=119555
namespace skia {
PlatformCanvas::PlatformCanvas(int width, int height, bool is_opaque) {
TRACE_EVENT2("skia", "PlatformCanvas::PlatformCanvas",
"width", width, "height", height);
if (!initialize(width, height, is_opaque))
SK_CRASH();
}
#if defined(WIN32)
PlatformCanvas::PlatformCanvas(int width,
int height,
bool is_opaque,
HANDLE shared_section) {
TRACE_EVENT2("skia", "PlatformCanvas::PlatformCanvas",
"width", width, "height", height);
if (!initialize(width, height, is_opaque, shared_section))
SK_CRASH();
}
#elif defined(__APPLE__)
PlatformCanvas::PlatformCanvas(int width, int height, bool is_opaque,
uint8_t* data) {
TRACE_EVENT2("skia", "PlatformCanvas::PlatformCanvas",
"width", width, "height", height);
if (!initialize(width, height, is_opaque, data))
SK_CRASH();
}
PlatformCanvas::PlatformCanvas(int width,
int height,
bool is_opaque,
CGContextRef context) {
TRACE_EVENT2("skia", "PlatformCanvas::PlatformCanvas",
"width", width, "height", height);
if (!initialize(context, width, height, is_opaque))
SK_CRASH();
}
#elif defined(__linux__) || defined(__FreeBSD__) || defined(__OpenBSD__) || \
defined(__sun) || defined(ANDROID)
PlatformCanvas::PlatformCanvas(int width, int height, bool is_opaque,
uint8_t* data) {
TRACE_EVENT2("skia", "PlatformCanvas::PlatformCanvas",
"width", width, "height", height);
if (!initialize(width, height, is_opaque, data))
SK_CRASH();
}
#endif
PlatformCanvas::~PlatformCanvas() {
}
#if defined(WIN32)
bool PlatformCanvas::initialize(int width,
int height,
bool is_opaque,
HANDLE shared_section) {
// Use platform specific device for shared_section.
if (shared_section)
return initializeWithDevice(BitmapPlatformDevice::Create(
width, height, is_opaque, shared_section));
return initializeWithDevice(new SkDevice(
SkBitmap::kARGB_8888_Config, width, height, is_opaque));
}
#elif defined(__APPLE__)
bool PlatformCanvas::initialize(int width,
int height,
bool is_opaque,
uint8_t* data) {
// Use platform specific device for data.
if (data)
return initializeWithDevice(BitmapPlatformDevice::CreateWithData(
data, width, height, is_opaque));
return initializeWithDevice(new SkDevice(
SkBitmap::kARGB_8888_Config, width, height, is_opaque));
}
bool PlatformCanvas::initialize(CGContextRef context,
int width,
int height,
bool is_opaque) {
return initializeWithDevice(BitmapPlatformDevice::Create(
context, width, height, is_opaque));
}
#elif defined(__linux__) || defined(__FreeBSD__) || defined(__OpenBSD__) || \
defined(__sun) || defined(ANDROID)
bool PlatformCanvas::initialize(int width, int height, bool is_opaque,
uint8_t* data) {
// Use platform specific device for data.
if (data)
return initializeWithDevice(BitmapPlatformDevice::Create(
width, height, is_opaque, data));
return initializeWithDevice(new SkDevice(
SkBitmap::kARGB_8888_Config, width, height, is_opaque));
}
#endif
} // namespace skia
|