HomeSort by relevance Sort by last modified time
    Searched full:bitmapplatformdevice (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/skia/ext/
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.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_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_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_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...]
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...]
vector_platform_device_skia.h 19 class BitmapPlatformDevice;
52 skia::RefPtr<BitmapPlatformDevice> raster_surface_;
vector_platform_device_skia.cc 40 // a vector interface. Therefore we create a BitmapPlatformDevice here
45 BitmapPlatformDevice::CreateAndClear(width(), height(), false));
58 // BitmapPlatformDevice matches begin and end calls.
bitmap_platform_device.h 9 // BitmapPlatformDevice header file for your platform.
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_unittest.cc 22 bitmap_.reset(BitmapPlatformDevice::Create(
26 scoped_ptr<BitmapPlatformDevice> bitmap_;
skia_utils_mac.mm 199 skia::BitmapPlatformDevice::Create(NULL, width, height, false));
vector_platform_device_emf_win.cc 31 // BitmapPlatformDevice is created when VectorCanvas think a saveLayers()
36 return BitmapPlatformDevice::Create(width, height, is_opaque,
  /external/chromium/chrome/browser/ui/views/
theme_helpers.cc 67 skia::BitmapPlatformDevice& device =
68 static_cast<skia::BitmapPlatformDevice&>(
  /external/chromium_org/ui/native_theme/
native_theme_win.cc 608 skia::RefPtr<skia::BitmapPlatformDevice> device = skia::AdoptRef(
609 skia::BitmapPlatformDevice::Create(
    [all...]

Completed in 403 milliseconds