Searched refs:nativeImage (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DPlatformImage.cpp48 void PlatformImage::updateFromImage(NativeImagePtr nativeImage) argument
52 NativeImageSkia* skiaImage = static_cast<NativeImageSkia*>(nativeImage);
59 int width = CGImageGetWidth(nativeImage);
60 int height = CGImageGetHeight(nativeImage);
84 CGColorSpaceRef colorSpace = CGImageGetColorSpace(nativeImage);
105 nativeImage);
/external/webkit/Source/WebCore/platform/graphics/
H A DBitmapImage.h107 static PassRefPtr<BitmapImage> create(NativeImagePtr nativeImage, ImageObserver* observer = 0) argument
109 return adoptRef(new BitmapImage(nativeImage, observer));
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DImageBufferQt.cpp159 QPixmap* nativeImage = m_data.m_image->nativeImageForCurrentFrame(); local
160 if (!nativeImage)
164 QPixmap alphaMask = *nativeImage;
H A DGraphicsContext3DQt.cpp1750 QImage nativeImage = nativePixmap->toImage().convertToFormat(QImage::Format_ARGB32); local
1751 outputVector.resize(nativeImage.byteCount());
1752 return packPixels(nativeImage.rgbSwapped().bits(), SourceFormatRGBA8, image->width(), image->height(), 0,
/external/webkit/Source/WebCore/platform/graphics/opengl/
H A DTextureMapperGL.cpp487 NativeImagePtr nativeImage = image ? image->nativeImageForCurrentFrame() : 0; local
488 if (!image || !nativeImage) {
494 if (nativeImage == m_image)
497 GLuint newTextureID = m_textureMapper->data().directlyCompositedImages.findOrCreate(nativeImage, found);
502 m_image = nativeImage;

Completed in 95 milliseconds