OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BitmapPlatformDevice
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/skia/ext/
bitmap_platform_device_skia.h
21
class
BitmapPlatformDevice
: public SkBitmapDevice, public PlatformDevice {
23
// Construct a
BitmapPlatformDevice
. |is_opaque| should be set if the caller
26
static
BitmapPlatformDevice
* Create(int width, int height, bool is_opaque);
28
// Construct a
BitmapPlatformDevice
, as above.
30
static
BitmapPlatformDevice
* CreateAndClear(int width, int height,
35
static
BitmapPlatformDevice
* Create(int width, int height, bool is_opaque,
38
// Create a
BitmapPlatformDevice
from an already constructed bitmap;
42
explicit
BitmapPlatformDevice
(const SkBitmap& other);
43
virtual ~
BitmapPlatformDevice
();
55
DISALLOW_COPY_AND_ASSIGN(
BitmapPlatformDevice
);
[
all
...]
bitmap_platform_device_skia.cc
10
BitmapPlatformDevice
*
BitmapPlatformDevice
::Create(int width, int height,
20
return new
BitmapPlatformDevice
(bitmap);
25
BitmapPlatformDevice
*
BitmapPlatformDevice
::CreateAndClear(int width,
28
BitmapPlatformDevice
* device = Create(width, height, is_opaque);
34
BitmapPlatformDevice
*
BitmapPlatformDevice
::Create(int width, int height,
45
return new
BitmapPlatformDevice
(bitmap);
48
BitmapPlatformDevice
::BitmapPlatformDevice(const SkBitmap& bitmap
[
all
...]
bitmap_platform_device_cairo.h
59
class
BitmapPlatformDevice
: public SkBitmapDevice, public PlatformDevice {
67
BitmapPlatformDevice
(const SkBitmap& other, cairo_surface_t* surface);
68
virtual ~
BitmapPlatformDevice
();
73
static
BitmapPlatformDevice
* Create(int width, int height, bool is_opaque);
78
static
BitmapPlatformDevice
* CreateAndClear(int width, int height,
83
static
BitmapPlatformDevice
* Create(int width, int height, bool is_opaque,
101
static
BitmapPlatformDevice
* Create(int width, int height, bool is_opaque,
128
DISALLOW_COPY_AND_ASSIGN(
BitmapPlatformDevice
);
bitmap_platform_device_mac.h
17
// write to.
BitmapPlatformDevice
creates a bitmap using
29
class SK_API
BitmapPlatformDevice
: public SkBitmapDevice, public PlatformDevice {
31
// Creates a
BitmapPlatformDevice
instance. |is_opaque| should be set if the
36
static
BitmapPlatformDevice
* Create(CGContextRef context,
40
// Creates a
BitmapPlatformDevice
instance. If |is_opaque| is false,
42
static
BitmapPlatformDevice
* CreateAndClear(int width, int height,
47
static
BitmapPlatformDevice
* CreateWithData(uint8_t* data,
51
virtual ~
BitmapPlatformDevice
();
63
BitmapPlatformDevice
(CGContextRef context,
97
DISALLOW_COPY_AND_ASSIGN(
BitmapPlatformDevice
);
[
all
...]
bitmap_platform_device_win.h
17
// to.
BitmapPlatformDevice
creates a bitmap using CreateDIBSection() in a
27
class SK_API
BitmapPlatformDevice
: public SkBitmapDevice, public PlatformDevice {
37
static
BitmapPlatformDevice
* Create(int width, int height,
40
// Create a
BitmapPlatformDevice
with no shared section. The bitmap is not
42
static
BitmapPlatformDevice
* Create(int width, int height, bool is_opaque);
44
// Creates a
BitmapPlatformDevice
instance respecting the parameters as above.
46
static
BitmapPlatformDevice
* CreateAndClear(int width, int height,
49
virtual ~
BitmapPlatformDevice
();
77
BitmapPlatformDevice
(HBITMAP hbitmap, const SkBitmap& bitmap);
122
DISALLOW_COPY_AND_ASSIGN(
BitmapPlatformDevice
);
[
all
...]
bitmap_platform_device_cairo.cc
81
void
BitmapPlatformDevice
::SetMatrixClip(
89
void
BitmapPlatformDevice
::LoadConfig() {
107
BitmapPlatformDevice
*
BitmapPlatformDevice
::Create(int width, int height,
129
return new
BitmapPlatformDevice
(bitmap, surface);
132
BitmapPlatformDevice
*
BitmapPlatformDevice
::Create(int width, int height,
138
BitmapPlatformDevice
* device = Create(width, height, is_opaque, surface);
148
BitmapPlatformDevice
*
BitmapPlatformDevice
::CreateAndClear(int width
[
all
...]
bitmap_platform_device_mac.cc
60
void
BitmapPlatformDevice
::ReleaseBitmapContext() {
66
void
BitmapPlatformDevice
::SetMatrixClip(
74
void
BitmapPlatformDevice
::LoadConfig() {
96
BitmapPlatformDevice
*
BitmapPlatformDevice
::Create(CGContextRef context,
135
BitmapPlatformDevice
* rv = new
BitmapPlatformDevice
(context, bitmap);
144
BitmapPlatformDevice
*
BitmapPlatformDevice
::CreateAndClear(int width,
147
BitmapPlatformDevice
* device = Create(NULL, width, height, is_opaque)
[
all
...]
bitmap_platform_device_win.cc
146
HDC
BitmapPlatformDevice
::GetBitmapDC() {
157
void
BitmapPlatformDevice
::ReleaseBitmapDC() {
165
bool
BitmapPlatformDevice
::IsBitmapDCCreated()
171
void
BitmapPlatformDevice
::SetMatrixClip(
179
void
BitmapPlatformDevice
::LoadConfig() {
193
BitmapPlatformDevice
*
BitmapPlatformDevice
::Create(
222
return new
BitmapPlatformDevice
(hbitmap, bitmap);
226
BitmapPlatformDevice
*
BitmapPlatformDevice
::Create(int width, int height
[
all
...]
Completed in 43 milliseconds