HomeSort by relevance Sort by last modified time
    Searched defs:BitmapPlatformDevice (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/skia/ext/
bitmap_platform_device_android.h 21 class BitmapPlatformDevice : public SkDevice, 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_mac.h 17 // write to. BitmapPlatformDevice creates a bitmap using
29 class SK_API BitmapPlatformDevice : public SkDevice, 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();
68 BitmapPlatformDevice(const skia::RefPtr<BitmapPlatformDeviceData>& data,
83 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
    [all...]
bitmap_platform_device_linux.h 59 class BitmapPlatformDevice : public SkDevice, public PlatformDevice {
70 BitmapPlatformDevice(const SkBitmap& other, BitmapPlatformDeviceData* data);
71 virtual ~BitmapPlatformDevice();
76 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque);
81 static BitmapPlatformDevice* CreateAndClear(int width, int height,
86 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque,
104 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque,
109 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
bitmap_platform_device_win.h 17 // to. BitmapPlatformDevice creates a bitmap using CreateDIBSection() in a
29 class SK_API BitmapPlatformDevice : public SkDevice, public PlatformDevice {
39 static BitmapPlatformDevice* Create(int width, int height,
42 // Create a BitmapPlatformDevice with no shared section. The bitmap is not
44 static BitmapPlatformDevice* Create(int width, int height, bool is_opaque);
46 // Creates a BitmapPlatformDevice instance respecting the parameters as above.
48 static BitmapPlatformDevice* CreateAndClear(int width, int height,
51 virtual ~BitmapPlatformDevice();
84 BitmapPlatformDevice(const skia::RefPtr<BitmapPlatformDeviceData>& data,
94 DISALLOW_COPY_AND_ASSIGN(BitmapPlatformDevice);
    [all...]
bitmap_platform_device_android.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_linux.cc 44 BitmapPlatformDevice::BitmapPlatformDeviceData::BitmapPlatformDeviceData(
52 BitmapPlatformDevice::BitmapPlatformDeviceData::~BitmapPlatformDeviceData() {
57 void BitmapPlatformDevice::BitmapPlatformDeviceData::SetMatrixClip(
65 void BitmapPlatformDevice::BitmapPlatformDeviceData::LoadConfig() {
83 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height,
97 return new BitmapPlatformDevice
101 BitmapPlatformDevice* BitmapPlatformDevice::Create(int width, int height,
107 BitmapPlatformDevice* device = Create(width, height, is_opaque, surface)
    [all...]
bitmap_platform_device_mac.cc 60 BitmapPlatformDevice::BitmapPlatformDeviceData::BitmapPlatformDeviceData(
79 BitmapPlatformDevice::BitmapPlatformDeviceData::~BitmapPlatformDeviceData() {
84 void BitmapPlatformDevice::BitmapPlatformDeviceData::ReleaseBitmapContext() {
90 void BitmapPlatformDevice::BitmapPlatformDeviceData::SetMatrixClip(
98 void BitmapPlatformDevice::BitmapPlatformDeviceData::LoadConfig() {
120 BitmapPlatformDevice* BitmapPlatformDevice::Create(CGContextRef context,
158 BitmapPlatformDevice* rv = new BitmapPlatformDevice(
168 BitmapPlatformDevice* BitmapPlatformDevice::CreateAndClear(int width
    [all...]
bitmap_platform_device_win.cc 89 BitmapPlatformDevice::BitmapPlatformDeviceData::BitmapPlatformDeviceData(
104 BitmapPlatformDevice::BitmapPlatformDeviceData::~BitmapPlatformDeviceData() {
112 HDC BitmapPlatformDevice::BitmapPlatformDeviceData::GetBitmapDC() {
127 void BitmapPlatformDevice::BitmapPlatformDeviceData::ReleaseBitmapDC() {
133 bool BitmapPlatformDevice::BitmapPlatformDeviceData::IsBitmapDCCreated()
139 void BitmapPlatformDevice::BitmapPlatformDeviceData::SetMatrixClip(
147 void BitmapPlatformDevice::BitmapPlatformDeviceData::LoadConfig() {
161 BitmapPlatformDevice* BitmapPlatformDevice::Create(
188 return new BitmapPlatformDevice(
    [all...]

Completed in 1611 milliseconds