| Index: third_party/WebKit/Source/platform/graphics/gpu/AcceleratedImageBufferSurface.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/gpu/AcceleratedImageBufferSurface.cpp b/third_party/WebKit/Source/platform/graphics/gpu/AcceleratedImageBufferSurface.cpp
|
| index fd5a436f177c544cc95700fcde04fc30b298ce5d..fa52e6943b06ae5519dfb976f45c2c00129d054e 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/gpu/AcceleratedImageBufferSurface.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/gpu/AcceleratedImageBufferSurface.cpp
|
| @@ -89,4 +89,12 @@ GLuint AcceleratedImageBufferSurface::GetBackingTextureHandleForOverwrite() {
|
| ->fID;
|
| }
|
|
|
| +bool AcceleratedImageBufferSurface::WritePixels(const SkImageInfo& orig_info,
|
| + const void* pixels,
|
| + size_t row_bytes,
|
| + int x,
|
| + int y) {
|
| + return surface_->getCanvas()->writePixels(orig_info, pixels, row_bytes, x, y);
|
| +}
|
| +
|
| } // namespace blink
|
|
|