Searched defs:StillImage (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DStillImageHaiku.h36 class StillImage : public Image { class in namespace:WebCore
38 static PassRefPtr<StillImage> create(const BBitmap& bitmap)
40 return adoptRef(new StillImage(bitmap));
51 StillImage(const BBitmap&);
H A DStillImageHaiku.cpp37 StillImage::StillImage(const BBitmap& bitmap) function in class:WebCore::StillImage
42 void StillImage::destroyDecodedData(bool destroyAll)
45 // It appears it would not apply to StillImage.
48 unsigned StillImage::decodedSize() const
56 IntSize StillImage::size() const
61 NativeImagePtr StillImage::nativeImageForCurrentFrame()
66 void StillImage::draw(GraphicsContext* context, const FloatRect& destRect,
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DStillImageQt.cpp39 StillImage::StillImage(const QPixmap& pixmap) function in class:WebCore::StillImage
44 StillImage::StillImage(const QPixmap* pixmap) function in class:WebCore::StillImage
49 StillImage::~StillImage()
55 IntSize StillImage::size() const
60 NativeImagePtr StillImage::nativeImageForCurrentFrame()
65 void StillImage::draw(GraphicsContext* ctxt, const FloatRect& dst,
H A DStillImageQt.h35 class StillImage : public Image { class in namespace:WebCore
37 static PassRefPtr<StillImage> create(const QPixmap& pixmap)
39 return adoptRef(new StillImage(pixmap));
42 static PassRefPtr<StillImage> createForRendering(const QPixmap* pixmap)
44 return adoptRef(new StillImage(pixmap));
57 StillImage(const QPixmap& pixmap);
58 StillImage(const QPixmap* pixmap);
59 ~StillImage();

Completed in 270 milliseconds