Searched refs:BitmapPlatformDevice (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/skia/ext/
H A Dbitmap_platform_device_skia.cc10 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height,
18 return new BitmapPlatformDevice(bitmap);
23 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width,
26 BitmapPlatformDevice* device = Create(width, height, is_opaque);
32 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height,
43 return new BitmapPlatformDevice(bitmap);
46 BitmapPlatformDevice function in class:skia::BitmapPlatformDevice
[all...]
H A Dbitmap_platform_device_skia.h21 class BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice { class in namespace:skia
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();
54 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
[all...]
H A Dbitmap_platform_device_cairo.h59 class BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice { class in namespace:skia
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);
H A Dbitmap_platform_device_mac.h17 // write to. BitmapPlatformDevice creates a bitmap using
29 class SK_API BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice { class in namespace:skia
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,
96 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
[all...]
H A Dbitmap_platform_device_win.h17 // to. BitmapPlatformDevice creates a bitmap using CreateDIBSection() in a
27 class SK_API BitmapPlatformDevice : public SkBitmapDevice, public PlatformDevice { class in namespace:skia
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();
76 BitmapPlatformDevice(HBITMAP hbitmap, const SkBitmap& bitmap);
121 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
[all...]
H A Dbitmap_platform_device_win.cc58 HDC BitmapPlatformDevice::GetBitmapDC() {
69 void BitmapPlatformDevice::ReleaseBitmapDC() {
77 bool BitmapPlatformDevice::IsBitmapDCCreated()
83 void BitmapPlatformDevice::SetMatrixClip(
91 void BitmapPlatformDevice::LoadConfig() {
119 BitmapPlatformDevice* BitmapPlatformDevice::Create(
145 return new BitmapPlatformDevice(hbitmap, bitmap);
149 BitmapPlatformDevice* BitmapPlatformDevice
167 BitmapPlatformDevice::BitmapPlatformDevice( function in class:skia::BitmapPlatformDevice
[all...]
H A Dbitmap_platform_device_mac.cc60 void BitmapPlatformDevice::ReleaseBitmapContext() {
66 void BitmapPlatformDevice::SetMatrixClip(
74 void BitmapPlatformDevice::LoadConfig() {
96 BitmapPlatformDevice* BitmapPlatformDevice::Create(CGContextRef context,
134 BitmapPlatformDevice* rv = new BitmapPlatformDevice(context, bitmap);
143 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width,
146 BitmapPlatformDevice* devic
172 BitmapPlatformDevice::BitmapPlatformDevice( function in class:skia::BitmapPlatformDevice
[all...]
H A Dbitmap_platform_device_cairo.cc73 void BitmapPlatformDevice::SetMatrixClip(
81 void BitmapPlatformDevice::LoadConfig() {
99 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height,
118 return new BitmapPlatformDevice(bitmap, cairo);
121 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height,
127 BitmapPlatformDevice* device = Create(width, height, is_opaque, surface);
137 BitmapPlatformDevice* BitmapPlatformDevice
156 BitmapPlatformDevice::BitmapPlatformDevice( function in class:skia::BitmapPlatformDevice
[all...]
H A Dvector_platform_device_skia.h19 class BitmapPlatformDevice;
52 skia::RefPtr<BitmapPlatformDevice> raster_surface_;
H A Dbitmap_platform_device_mac_unittest.cc22 bitmap_.reset(BitmapPlatformDevice::Create(
26 scoped_ptr<BitmapPlatformDevice> bitmap_;
H A Dvector_platform_device_skia.cc40 // a vector interface. Therefore we create a BitmapPlatformDevice here
45 BitmapPlatformDevice::CreateAndClear(width(), height(), false));
58 // BitmapPlatformDevice matches begin and end calls.
H A Dvector_platform_device_emf_win.cc31 // BitmapPlatformDevice is created when VectorCanvas think a saveLayers()
36 return BitmapPlatformDevice::Create(width, height, is_opaque,
/external/chromium_org/ui/native_theme/
H A Dnative_theme_win.cc660 skia::RefPtr<skia::BitmapPlatformDevice> device = skia::AdoptRef(
661 skia::BitmapPlatformDevice::Create(

Completed in 165 milliseconds