| Index: gpu/blink/webgraphicscontext3d_impl.cc
|
| diff --git a/gpu/blink/webgraphicscontext3d_impl.cc b/gpu/blink/webgraphicscontext3d_impl.cc
|
| index 0ef42a23e565643d644f86904ff900099c318a8f..a3fc0ed69307b756525eab7e6cf51627c527300e 100644
|
| --- a/gpu/blink/webgraphicscontext3d_impl.cc
|
| +++ b/gpu/blink/webgraphicscontext3d_impl.cc
|
| @@ -223,7 +223,11 @@ bool WebGraphicsContext3DImpl::insertSyncPoint(WGC3Dbyte* sync_token) {
|
| return true;
|
| }
|
|
|
| -DELEGATE_TO_GL_3(reshapeWithScaleFactor, ResizeCHROMIUM, int, int, float)
|
| +void WebGraphicsContext3DImpl::reshapeWithScaleFactor(int width,
|
| + int height,
|
| + float scale) {
|
| + gl_->ResizeCHROMIUM(width, height, scale, true);
|
| +}
|
|
|
| DELEGATE_TO_GL_4R(mapBufferSubDataCHROMIUM, MapBufferSubDataCHROMIUM, WGC3Denum,
|
| WGC3Dintptr, WGC3Dsizeiptr, WGC3Denum, void*)
|
|
|