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

  /external/webkit/Source/WebCore/platform/graphics/wince/
SharedBitmap.cpp 22 #include "SharedBitmap.h"
39 static WTF::RefCountedLeakCounter sharedBitmapLeakCounter("SharedBitmap");
43 PassRefPtr<SharedBitmap> SharedBitmap::create(const IntSize& size, BitmapInfo::BitCount bitCount, bool initPixels)
45 RefPtr<SharedBitmap> resultantBitmap = adoptRef(new SharedBitmap(size, bitCount, initPixels));
51 PassRefPtr<SharedBitmap> SharedBitmap::create(const Vector<unsigned>& data, const IntSize& size, bool hasAlpha)
53 RefPtr<SharedBitmap> result = create(size, BitmapInfo::BitCount32, false);
61 SharedBitmap::SharedBitmap(const IntSize& size, BitmapInfo::BitCount bitCount, bool initPixels
    [all...]
SharedBitmap.h 44 class SharedBitmap: public RefCounted<SharedBitmap> {
46 ~SharedBitmap();
47 static PassRefPtr<SharedBitmap> create(const IntSize&, BitmapInfo::BitCount = BitmapInfo::BitCount32, bool initPixels = true);
48 static PassRefPtr<SharedBitmap> create(const Vector<unsigned>&, const IntSize&, bool hasAlpha = true);
82 PassRefPtr<SharedBitmap> clipBitmap(const IntRect& rect, bool useAlpha);
93 virtual HDC getDC(SharedBitmap*, unsigned*);
94 virtual void releaseDC(SharedBitmap*, HDC, unsigned);
104 DCHolder(SharedBitmap* bmp = 0) { setInternal(bmp); }
106 void set(SharedBitmap* bmp = 0
    [all...]

Completed in 148 milliseconds