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

  /external/webkit/Source/WebCore/platform/graphics/wince/
ImageBufferDataWince.h 20 #include "SharedBitmap.h"
29 RefPtr<SharedBitmap> m_bitmap;
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...]
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...]
ImageWinCE.cpp 46 return SharedBitmap::create(m_backingStore, m_size, hasAlpha());
95 RefPtr<SharedBitmap> bmp = frameAtIndex(i);
120 RefPtr<SharedBitmap> bmp = frameAtIndex(m_currentFrame);
145 RefPtr<SharedBitmap> bmp = nativeImageForCurrentFrame();
163 RefPtr<SharedBitmap> bmp = frameAtIndex(0);
ImageBufferWinCE.cpp 29 #include "SharedBitmap.h"
67 : m_bitmap(SharedBitmap::create(size, BitmapInfo::BitCount32, false))
131 static PassRefPtr<ByteArray> getImageData(const IntRect& rect, const SharedBitmap* bitmap)
191 static void putImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, SharedBitmap* bitmap)
GraphicsContextWinCE.cpp 33 #include "SharedBitmap.h"
268 PassRefPtr<SharedBitmap> getTransparentLayerBitmap(IntRect& origRect, AlphaPaintType alphaPaint, RECT& bmpRect, bool checkClipBox, bool force) const
283 RefPtr<SharedBitmap> bmp = SharedBitmap::create(origRect.size(), alphaPaint == AlphaPaintNone ? BitmapInfo::BitCount16 : BitmapInfo::BitCount32, false);
290 SharedBitmap::DCHolder dc(bmp.get());
319 void paintBackTransparentLayerBitmap(HDC hdc, SharedBitmap* bmp, const IntRect& origRect, AlphaPaintType alphaPaint, const RECT& bmpRect)
344 RefPtr<SharedBitmap> m_bitmap;
376 template <typename PixelType, bool Is16bit> static void _rotateBitmap(SharedBitmap* destBmp, const SharedBitmap* sourceBmp, const RotationTransform& transform)
436 static void rotateBitmap(SharedBitmap* destBmp, const SharedBitmap* sourceBmp, const RotationTransform& transform
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
ImageSource.h 62 #include "SharedBitmap.h"
117 typedef RefPtr<SharedBitmap> NativeImagePtr;
GraphicsContext.h 117 class SharedBitmap;
453 void setBitmap(PassRefPtr<SharedBitmap>);
462 void drawBitmap(SharedBitmap*, const IntRect& dstRect, const IntRect& srcRect, ColorSpace styleColorSpace, CompositeOperator compositeOp);
463 void drawBitmapPattern(SharedBitmap*, const FloatRect& tileRectIn, const AffineTransform& patternTransform, const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect, const IntSize& origSourceSize);
  /external/webkit/Source/WebCore/platform/wince/
PasteboardWinCE.cpp 212 RefPtr<SharedBitmap> sourceBmp = image->nativeImageForCurrentFrame();

Completed in 111 milliseconds