Home
last modified time | relevance | path

Searched refs:BitmapPlatformDevice (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/skia/ext/
Dbitmap_platform_device_skia.cc10 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create()
18 return new BitmapPlatformDevice(bitmap); in Create()
23 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear()
26 BitmapPlatformDevice* device = Create(width, height, is_opaque); in CreateAndClear()
32 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create()
43 return new BitmapPlatformDevice(bitmap); in Create()
46 BitmapPlatformDevice::BitmapPlatformDevice(const SkBitmap& bitmap) in BitmapPlatformDevice() function in skia::BitmapPlatformDevice
51 BitmapPlatformDevice::~BitmapPlatformDevice() { in ~BitmapPlatformDevice()
54 SkBaseDevice* BitmapPlatformDevice::onCreateDevice(const SkImageInfo& info, in onCreateDevice()
57 return BitmapPlatformDevice::Create(info.width(), info.height(), in onCreateDevice()
[all …]
Dbitmap_platform_device_cairo.cc73 void BitmapPlatformDevice::SetMatrixClip( in SetMatrixClip()
81 void BitmapPlatformDevice::LoadConfig() { in LoadConfig()
99 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create()
118 return new BitmapPlatformDevice(bitmap, cairo); in Create()
121 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create()
127 BitmapPlatformDevice* device = Create(width, height, is_opaque, surface); in Create()
137 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear()
145 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create()
156 BitmapPlatformDevice::BitmapPlatformDevice( in BitmapPlatformDevice() function in skia::BitmapPlatformDevice
166 BitmapPlatformDevice::~BitmapPlatformDevice() { in ~BitmapPlatformDevice()
[all …]
Dbitmap_platform_device_win.cc58 HDC BitmapPlatformDevice::GetBitmapDC() { in GetBitmapDC()
69 void BitmapPlatformDevice::ReleaseBitmapDC() { in ReleaseBitmapDC()
77 bool BitmapPlatformDevice::IsBitmapDCCreated() in IsBitmapDCCreated()
83 void BitmapPlatformDevice::SetMatrixClip( in SetMatrixClip()
91 void BitmapPlatformDevice::LoadConfig() { in LoadConfig()
119 BitmapPlatformDevice* BitmapPlatformDevice::Create( in Create()
145 return new BitmapPlatformDevice(hbitmap, bitmap); in Create()
149 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create()
155 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear()
158 BitmapPlatformDevice* device = BitmapPlatformDevice::Create(width, height, in CreateAndClear()
[all …]
Dbitmap_platform_device_mac.cc60 void BitmapPlatformDevice::ReleaseBitmapContext() { in ReleaseBitmapContext()
66 void BitmapPlatformDevice::SetMatrixClip( in SetMatrixClip()
74 void BitmapPlatformDevice::LoadConfig() { in LoadConfig()
96 BitmapPlatformDevice* BitmapPlatformDevice::Create(CGContextRef context, in Create()
134 BitmapPlatformDevice* rv = new BitmapPlatformDevice(context, bitmap); in Create()
143 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear()
146 BitmapPlatformDevice* device = Create(NULL, width, height, is_opaque); in CreateAndClear()
152 BitmapPlatformDevice* BitmapPlatformDevice::CreateWithData(uint8_t* data, in CreateWithData()
160 BitmapPlatformDevice* rv = Create(context, width, height, is_opaque); in CreateWithData()
172 BitmapPlatformDevice::BitmapPlatformDevice( in BitmapPlatformDevice() function in skia::BitmapPlatformDevice
[all …]
Dbitmap_platform_device_cairo.h59 class BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice {
67 BitmapPlatformDevice(const SkBitmap& other, cairo_t* cairo);
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,
100 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque,
127 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
Dbitmap_platform_device_skia.h21 class BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice {
26 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque);
30 static BitmapPlatformDevice* CreateAndClear(int width, int height,
35 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque,
42 explicit BitmapPlatformDevice(const SkBitmap& other);
43 virtual ~BitmapPlatformDevice();
54 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
Dbitmap_platform_device_mac.h29 class SK_API BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice {
36 static BitmapPlatformDevice* Create(CGContextRef context,
42 static BitmapPlatformDevice* CreateAndClear(int width, int height,
47 static BitmapPlatformDevice* CreateWithData(uint8_t* data,
51 virtual ~BitmapPlatformDevice();
63 BitmapPlatformDevice(CGContextRef context,
96 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
Dbitmap_platform_device_win.h27 class SK_API BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice {
37 static BitmapPlatformDevice* Create(int width, int height,
42 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque);
46 static BitmapPlatformDevice* CreateAndClear(int width, int height,
49 virtual ~BitmapPlatformDevice();
76 BitmapPlatformDevice(HBITMAP hbitmap, const SkBitmap& bitmap);
121 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
Dvector_platform_device_skia.h19 class BitmapPlatformDevice; variable
52 skia::RefPtr<BitmapPlatformDevice> raster_surface_;
Dbitmap_platform_device_mac_unittest.cc22 bitmap_.reset(BitmapPlatformDevice::Create( in BitmapPlatformDeviceMacTest()
26 scoped_ptr<BitmapPlatformDevice> bitmap_;
Dvector_platform_device_skia.cc45 BitmapPlatformDevice::CreateAndClear(width(), height(), false)); in BeginPlatformPaint()
Dskia_utils_mac.mm193 skia::BitmapPlatformDevice::Create(NULL, width, height, false));
Dvector_platform_device_emf_win.cc36 return BitmapPlatformDevice::Create(width, height, is_opaque, in CreateDevice()
/external/chromium_org/ui/native_theme/
Dnative_theme_win.cc660 skia::RefPtr<skia::BitmapPlatformDevice> device = skia::AdoptRef( in PaintIndirect()
661 skia::BitmapPlatformDevice::Create( in PaintIndirect()
/external/chromium_org/skia/
DBUILD.gn476 # Select the right BitmapPlatformDevice.