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

  /external/chromium_org/skia/ext/
bitmap_platform_device_android.cc 84 // Port of PlatformBitmap to android
85 PlatformBitmap::~PlatformBitmap() {
89 bool PlatformBitmap::Allocate(int width, int height, bool is_opaque) {
platform_canvas.cc 76 PlatformBitmap::PlatformBitmap() : surface_(0), platform_extra_(0) {}
platform_canvas.h 158 // PlatformBitmap holds a PlatformSurface that can also be used as an SkBitmap.
159 class SK_API PlatformBitmap {
161 PlatformBitmap();
162 ~PlatformBitmap();
183 DISALLOW_COPY_AND_ASSIGN(PlatformBitmap);
bitmap_platform_device_linux.cc 188 // Port of PlatformBitmap to linux
189 PlatformBitmap::~PlatformBitmap() {
193 bool PlatformBitmap::Allocate(int width, int height, bool is_opaque) {
194 // The SkBitmap allocates and owns the bitmap memory; PlatformBitmap owns the
196 // outlive the PlatformBitmap if additional copies are made.
bitmap_platform_device_mac.cc 279 // Port of PlatformBitmap to mac
281 PlatformBitmap::~PlatformBitmap() {
286 bool PlatformBitmap::Allocate(int width, int height, bool is_opaque) {
bitmap_platform_device_win.cc 322 // Port of PlatformBitmap to win
324 PlatformBitmap::~PlatformBitmap() {
332 bool PlatformBitmap::Allocate(int width, int height, bool is_opaque) {

Completed in 234 milliseconds