Index: webkit/gpu/webgraphicscontext3d_in_process_impl.cc |
diff --git a/webkit/gpu/webgraphicscontext3d_in_process_impl.cc b/webkit/gpu/webgraphicscontext3d_in_process_impl.cc |
index fb47650459c3f45e0403076b1721f2a43b3c6d9a..b5ef5ca7e407483ddf61bf6a3852f99ec0a45c3d 100644 |
--- a/webkit/gpu/webgraphicscontext3d_in_process_impl.cc |
+++ b/webkit/gpu/webgraphicscontext3d_in_process_impl.cc |
@@ -343,6 +343,11 @@ void WebGraphicsContext3DInProcessImpl::reshape(int width, int height) { |
scanline_ = new unsigned char[width * 4]; |
} |
+void WebGraphicsContext3DInProcessImpl::reshapeWithScaleFactor( |
+ int width, int height, float scaleFactor) { |
+ reshape(width, height); |
+} |
+ |
bool WebGraphicsContext3DInProcessImpl::AllocateOffscreenFrameBuffer( |
int width, int height) { |
GLenum target = GL_TEXTURE_2D; |