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()
20 return new BitmapPlatformDevice(bitmap); in Create()
25 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear()
28 BitmapPlatformDevice* device = Create(width, height, is_opaque); in CreateAndClear()
34 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create()
45 return new BitmapPlatformDevice(bitmap); in Create()
48 BitmapPlatformDevice::BitmapPlatformDevice(const SkBitmap& bitmap) in BitmapPlatformDevice() function in skia::BitmapPlatformDevice
53 BitmapPlatformDevice::~BitmapPlatformDevice() { in ~BitmapPlatformDevice()
56 SkBaseDevice* BitmapPlatformDevice::onCreateCompatibleDevice( in onCreateCompatibleDevice()
60 return BitmapPlatformDevice::Create(width, height, isOpaque); in onCreateCompatibleDevice()
[all …]
Dbitmap_platform_device_cairo.cc81 void BitmapPlatformDevice::SetMatrixClip( in SetMatrixClip()
89 void BitmapPlatformDevice::LoadConfig() { in LoadConfig()
107 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create()
129 return new BitmapPlatformDevice(bitmap, surface); in Create()
132 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create()
138 BitmapPlatformDevice* device = Create(width, height, is_opaque, surface); in Create()
148 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear()
156 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create()
168 BitmapPlatformDevice::BitmapPlatformDevice( in BitmapPlatformDevice() function in skia::BitmapPlatformDevice
178 BitmapPlatformDevice::~BitmapPlatformDevice() { in ~BitmapPlatformDevice()
[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()
135 BitmapPlatformDevice* rv = new BitmapPlatformDevice(context, bitmap); in Create()
144 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear()
147 BitmapPlatformDevice* device = Create(NULL, width, height, is_opaque); in CreateAndClear()
153 BitmapPlatformDevice* BitmapPlatformDevice::CreateWithData(uint8_t* data, in CreateWithData()
161 BitmapPlatformDevice* rv = Create(context, width, height, is_opaque); in CreateWithData()
173 BitmapPlatformDevice::BitmapPlatformDevice( in BitmapPlatformDevice() function in skia::BitmapPlatformDevice
[all …]
Dbitmap_platform_device_win.cc146 HDC BitmapPlatformDevice::GetBitmapDC() { in GetBitmapDC()
157 void BitmapPlatformDevice::ReleaseBitmapDC() { in ReleaseBitmapDC()
165 bool BitmapPlatformDevice::IsBitmapDCCreated() in IsBitmapDCCreated()
171 void BitmapPlatformDevice::SetMatrixClip( in SetMatrixClip()
179 void BitmapPlatformDevice::LoadConfig() { in LoadConfig()
193 BitmapPlatformDevice* BitmapPlatformDevice::Create( in Create()
222 return new BitmapPlatformDevice(hbitmap, bitmap); in Create()
226 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height, in Create()
232 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width, in CreateAndClear()
235 BitmapPlatformDevice* device = BitmapPlatformDevice::Create(width, height, in CreateAndClear()
[all …]
Dbitmap_platform_device_cairo.h59 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);
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();
55 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,
97 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();
77 BitmapPlatformDevice(HBITMAP hbitmap, const SkBitmap& bitmap);
122 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.mm199 skia::BitmapPlatformDevice::Create(NULL, width, height, false));
Dvector_platform_device_emf_win.cc36 return BitmapPlatformDevice::Create(width, height, is_opaque, in CreateDevice()
/external/chromium/chrome/browser/ui/views/
Dtheme_helpers.cc67 skia::BitmapPlatformDevice& device = in GetRebarGradientColors()
68 static_cast<skia::BitmapPlatformDevice&>( in GetRebarGradientColors()
/external/chromium_org/ui/native_theme/
Dnative_theme_win.cc608 skia::RefPtr<skia::BitmapPlatformDevice> device = skia::AdoptRef( in PaintIndirect()
609 skia::BitmapPlatformDevice::Create( in PaintIndirect()