OSDN Git Service

Merge webkit.org at R49305 : ImageBuffer::get/putImageData renamed to get/putUnmultip...
authorSteve Block <steveblock@google.com>
Mon, 12 Oct 2009 14:44:20 +0000 (15:44 +0100)
committerSteve Block <steveblock@google.com>
Mon, 19 Oct 2009 23:45:10 +0000 (00:45 +0100)
See http://trac.webkit.org/changeset/47099

Change-Id: Ia282cb6a19fae8541f6dd9090ef87bcbc39feb64

WebCore/platform/graphics/android/ImageBufferAndroid.cpp

index 89d841d..e133494 100644 (file)
@@ -86,7 +86,7 @@ Image* ImageBuffer::image() const
     return m_image.get();
 }
 
-PassRefPtr<ImageData> ImageBuffer::getImageData(const IntRect& rect) const
+PassRefPtr<ImageData> ImageBuffer::getUnmultipliedImageData(const IntRect& rect) const
 {
     GraphicsContext* gc = this->context();
     if (!gc) {
@@ -149,7 +149,7 @@ PassRefPtr<ImageData> ImageBuffer::getImageData(const IntRect& rect) const
     return result;
 }
 
-void ImageBuffer::putImageData(ImageData* source, const IntRect& sourceRect, const IntPoint& destPoint)
+void ImageBuffer::putUnmultipliedImageData(ImageData* source, const IntRect& sourceRect, const IntPoint& destPoint)
 {
     GraphicsContext* gc = this->context();
     if (!gc) {